following new training for folask

master
Kerem Yollu 1 year ago
parent 2f46153cbd
commit 0da1c4bc7e

1
.gitignore vendored

@ -10,6 +10,7 @@ learning/rust/*/target/
learning/rust/*/Cargo.lock
flask_to_docker/.venv/
# These are backup files generated by rustfmt

@ -0,0 +1,34 @@
from flask import Flask, request, make_response, Response, render_template, redirect, url_for
app = Flask(__name__, template_folder='templates')
@app.route('/')
def index():
myval = 'Kynsight'
myres = 30
mylist = [10,20,30,40,50]
return render_template('index.html', value=myval, result=myres, list=mylist)
@app.route('/aaawwa')
def other():
return render_template('other.html')
@app.route('/filter')
def filter():
sometext="Hewllo World"
return render_template('filter.html', sometext=sometext)
# Custom filter
@app.template_filter('reverse_string')
def reverse_string(s):
return s[::-1]
@app.route('/redirect_endpoint')
def redirect_endpoint():
return redirect(url_for('other'))
if __name__ == '__main__':
app.run(host='0.0.0.0', port=5000, debug=True)

@ -0,0 +1,54 @@
from flask import Flask, request, make_response, Response
app = Flask(__name__)
@app.route('/')
def index():
return "<h1>Welcome</h1>"
# We can also return some responses (like 404 page not found and co)
@app.route('/hello', methods=['GET'])
def hello():
response = make_response('Hello World')
response.status_code = 202
response.headers['content-type'] = 'application/octet-stream'
return response
@app.route('/test_methodes', methods=['GET', 'POST'])
def test_methodes():
if request.method == 'GET':
return f"You made a GET request\n"
if request.method == 'POST':
return f"You made a POST request\n"
else:
return f"You will never see this message\n"
# This is a url Processor
@app.route('/greet/<name>')
def greet(name):
return f"Hello {name}"
# This is a url Processor
@app.route('/add/<int:number1>/<int:number2>')
def add(number1, number2):
return f'{number1} + {number2} = {number1+number2}'
# Handle parameters :
@app.route('/handle_url_params')
def handle_url_params():
if 'greeting' in request.args.keys() and 'name' in request.args.keys():
greeting = request.args['greeting']
name = request.args.get('name')
return f'{greeting}, {name}'
else:
return f'some params are missing'
if __name__ == '__main__':
app.run(host='0.0.0.0', port=5000, debug=True)

@ -0,0 +1,11 @@
<!DOCTYPE html>
<html lang="en">
<head charset="UTF-8">
<title>{% block title %}Flask APP {% endblock %}</title>
</head>
<body>
<p>this will allways be here</p>
{% block content %} {% endblock %}
</body>
</html>

@ -0,0 +1,12 @@
{% extends "base.html" %}
{% block title %}Filter Page{% endblock %}
{% block content %}
<h1>Filter</h1>
<p> {{ sometext }}</p>
<p> {{ sometext|upper }}</p>
<p> {{ sometext|lower }}</p>
<p> {{ sometext|replace('l', 'L') }}</p>
<p> {{ sometext|reverse_string }}</p>
{% endblock %}

@ -0,0 +1,18 @@
{% extends "base.html" %}
{% block title %}Index Page{% endblock %}
{% block content %}
<h1>My First Heading</h1>
<p>My value: {{ value }}</p>
<p>My result: {{ result }}</p>
<ul>
{% for item in list %}
{% if item == 30 %}
<li style="color: red">{{ item }}</li>
{% else %}
<li {%if item == 20 %} style="color: blue" {%endif%} >{{ item }}</li>
{% endif %}
{% endfor %}
</ul>
{% endblock %}

@ -0,0 +1,7 @@
{% extends "base.html" %}
{% block title %}Other Page{% endblock %}
{% block content %}
<h1>Other</h1>
{% endblock %}

@ -0,0 +1,452 @@
Flask_from_zero_to_docker
========================
# Pre-requirements
## Create a Python virtual enviroement
You can create a virtual enviroment using the *venv* command that comes with *Python*.
this will create a virtual enviroment in the specified *.venv* directory. I like to make it hidden so that it doesn't show up during developpment.
```bash
python3 -m venv .venv
```
---
## Activate the virtual enviroement
Then you need to activate the virtual enviroment.
- for Bash
```bash
source .venv/bin/activate
```
- for Fish
```bash
. .venv/bin/activate.fish
```
---
If executed corectly your *(.venv)* should apear on your terminal
```bash
(.venv) key@devbian ~/g/m/flask_to_docker >
```
---
## Install libraries and make them exportable
Once this is done you can check the installed libraries using *pip*.
```bash
pip3 freeze
```
This should return empty as we didn't installed anything yet. So let's proceed and install Flaks
```bash
pip3 install flask
```
Let's chech once again with *pip freeze*.
```bash
pip3 freeze
```
This time you shuld get a list of installed libraries.
```bash
(.venv) key@devbian ~/g/m/flask_to_docker > pip3 freeze
blinker==1.8.2
click==8.1.7
Flask==3.0.3
itsdangerous==2.2.0
Jinja2==3.1.4
MarkupSafe==2.1.5
Werkzeug==3.0.3
```
You can also expoirt the required libraries to a text file.
```bash
pip3 freeze > requirements.txt
```
This file can afterward be usted to automatically install all the libraries used on this porject.
```bash
pip install -r requirements.txt
```
This make it very easy to add *.venv* to your git ingnore list and for someone colning your project to easely install *pip libraries* after cloning your porject.
---
# Default application [YouTube](https://youtu.be/o3bCVqF9gI0?si=WwHFP83WFAhRpMtf)
## The main funtion to start a Flask Server
This is slef explanatory but each [Flask](https://flask.palletsprojects.com/en/2.3.x/tutorial/factory/) application start the same way. Let's create an *app.py* and start with the following steps.
- Import *Flask*
- We declare the *app()*
- Add decoration for routes [@app.route('/')](https://flask.palletsprojects.com/en/2.3.x/api/#flask.Flask.route)
- Define a function under the decoration *index():*
- Run the app wiht [app.run()](https://flask.palletsprojects.com/en/2.3.x/api/#flask.Flask.run)
```python
from flask import Flask # Importing flask
app = Flask(__name__)
@app.route('/')
def index():
return "Hello World"
if __name__ == '__main__':
app.run(host='0.0.0.0', port=5000, debug=True)
```
In the *run()* funtion there are some main parameters that needs to be defined these correspond to:
- **host** ([*str*](https://docs.python.org/3/library/stdtypes.html#str)* | **None*) the hostname to listen on. Set this to *0.0.0.0* to have the server available externally as well. Defaults to *127.0.0.1* (AKA *localhost*) or the host in the *SERVER_NAME* config variable if present.
- **port** ([*int*](https://docs.python.org/3/library/functions.html#int)* | **None*) the port of the webserver. Defaults to *5000* or the port defined in the *SERVER_NAME* config variable if present.
- **debug** ([*bool*](https://docs.python.org/3/library/functions.html#bool)* | **None*) if given, enable or disable debug mode. See [debug](https://flask.palletsprojects.com/en/2.3.x/api/#flask.Flask.debug).
---
## First Run
The firsat run is simple enought. Just execute your *app.py*. Just make sure that your *venv* is active.
```bash
(.venv) key@devbian ~/g/m/flask_to_docker > python3 app.py
```
you should be greeted wiht :
```bash
* Serving Flask app 'app'
* Debug mode: on
WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.
* Running on all addresses (0.0.0.0)
* Running on http://127.0.0.1:5000
* Running on http://192.168.1.128:5000
Press CTRL+C to quit
* Restarting with stat
* Debugger is active!
* Debugger PIN: 633-588-052
```
If this is tha case open [http://localhost:5000/](http://localhost:5000/) on wour browser and you should be greeted wiht your *hello wolrd* message.
## Congratulations you have a running Flask Application.
---
# Flask URL's & Route [YouTube](https://youtu.be/Jl9XzSPXSe4?si=TZAs7OxCU-TkGdjO)
These are Some code snippets wiht examples please do not forget tha the start annd the end is the same as the *Default Application* described just before.
## Main Route
Hereyou can see as before the main route *(/)*
```python
@app.route('/')
def index():
return "Welcome"
```
---
## url proccessors
We can also use url proccessors to get something that we have typed on the url.
In this case the url to visit would be [http://localhost:5000/greet/kerem](http://localhost:5000/greet/kerem)
```python
@app.route('/greet/<name>')
def greet(name):
return f"Hello {name}"
```
---
Variables given to the url can also be *typed* here as integers. This allows us to do some advanced operations. In this case the url to visit would be [http://localhost:5000/add/20/10](http://localhost:5000/add/20/10)
```python
@app.route('/add/<int:number1>/<int:number2>')
def add(number1, number2):
return f'{number1} + {number2} = {number1+number2}'
```
---
Now to do generate some responses. Here you can use [curl](https://curl.se/) so see exactly what is happening
```python
#We can also return some responses (like 404 page not found and co)
@app.route('/hello')
def hello():
response = make_response('Hello World')
response.status_code = 202
response.headers['content-type'] = 'application/octet-stream'
return response
```
So if we were to use *curl* we would gete here the following response.*http://127.0.0.1:5000/hello* is the same as *http://localhost:5000/hello*
```bash
key@devbian ~> curl -I http://127.0.0.1:5000/hello
HTTP/1.1 202 ACCEPTED
Server: Werkzeug/3.0.3 Python/3.11.2
Date: Wed, 26 Jun 2024 07:06:06 GMT
content-type: application/octet-stream
Content-Length: 11
Connection: close
```
---
## Methodes
This is the way to allow or block some [Methodes](https://www.w3schools.com/tags/att_method.asp).
```python
@app.route('/test_methodes', methods=['GET', 'POST'])
def test_methodes():
if request.method == 'GET':
return f"You made a GET request\n"
if request.method == 'POST':
return f"You made a POST request\n"
else:
return f"You will never see this message\n"
```
---
You have surely seen some Parametes embedde in liks like *?user=bgfdrt56+pass=Rtrssdf*. Flask alows some asy maniputation of those parameters. To test this : [http://localhost:5000/handle_url_params?greeting=hello&name=kerem](http://localhost:5000/handle_url_params?greeting=hello&name=kerem). If there was a mistmatch you would get the Error message instead.
```python
#Handle parameters :
@app.route('/handle_url_params')
def handle_url_params():
if 'greeting' in request.args.keys() and 'name' in request.args.keys():
greeting = request.args['greeting']
name = request.args.get('name')
return f'{greeting}, {name}'
else:
return f'some params are missing'
```
---
# Flask HTML files And [TEMPLATES](https://flask.palletsprojects.com/en/3.0.x/tutorial/templates/) [YouTube](https://youtu.be/w6Ui_DVxluc?si=B2JshnjVMu3DWcBC)
## Indicate that we use Templates
To indicate that we will use *templates* first we need to create a *directory* containing those tmeplates and second we need to *reference* it in our code.
let's create the *directory*
```bash
key@devbian ~/g/m/flask_to_docker > mkdir templates
key@devbian ~/g/m/flask_to_docker > cd templates
key@devbian ~/g/m/flask_to_docker > touch index.html
```
The sturcture should look like this. We can use [Tree](https://linux.die.net/man/1/tree) to find this out
```bash
key@devbian ~/g/m/flask_to_docker > tree
.
├── app.py
└── templates
└── index.html
```
Let's declare it in our code. *template_folder* take the source of *app.py* as starting route for directories.
```python
app = Flask(__name__, template_folder='templates')
```
---
## Using Templates
The [`render_template()`](https://flask.palletsprojects.com/en/2.3.x/templating/#) let's use use tem when returning the content of the page.
```python
@app.route('/')
def index():
myval = 'Kynsight'
myres = 30
mylist = [10,20,30,40,50]
return render_template('index.html', value=myval, result=myres, list=mylist)
```
Now this allows us to have a huge flexibility that HTML doesn't otherwise allow.
This is thnaks to [Jinja](https://jinja.palletsprojects.com/en/3.1.x/templates/).
Let's see how it works.
---
## HTML & Jinja
Now let's have a look to `index.html` herre we can now se some *Jinja* templates funtionlaities.
```HTML
<!DOCTYPE html>
<html lang="en">
<head charset="UTF-8">
<title>Flask APP</title>
</head>
<body>
<h1>My First Heading</h1>
<p>My value: {{ value }}</p>
<p>My result: {{ result }}</p>
<ul>
{% for item in list %}
{% if item == 30 %}
<li style="color: red">{{ item }}</li>
{% else %}
<li {%if item == 20 %} style="color: blue" {%endif%} >{{ item }}</li>
{% endif %}
{% endfor %}
</ul>
</body>
</html>
```
*Jinja* Allows us to use these kind of functions : `{% for item in list %}` that are ususaly inpossible wiht HTML.
All *Jinja* Functions starts with `{%` and ends with `%}`.
- They can also be used inline like: `<li {%if item == 20 %} style="color: blue" {%endif%} >{{ item }}</li>`.
## Extend Templates
We cna extend templates to other templates. What does this bring us ? Let's say we want ta have the *same header* on *multiple pages* we can use a template with the header and only add an *content* *BLOCK* onto this template.
In *templeates* directory we can now create a base html file let's call it *base.htm* and two pages that extends on it *index.html* and *other.html*.
```bash
key@devbian ~/g/m/flask_to_docker > cd templates
key@devbian ~/g/m/flask_to_docker > touch base.html other.html
```
the structure should look like this
```bash
key@devbian ~/g/m/flask_to_docker > tree
.
├── app.py
└── templates
├── base.html
├── index.html
└── other.html
```
*base.html*
```HTML
<!DOCTYPE html>
<html lang="en">
<head charset="UTF-8">
<title>Flask APP</title>
</head>
<body>
<h1>My First Heading</h1>
<p>My value: {{ value }}</p>
<p>My result: {{ result }}</p>
<ul>
{% for item in list %}
{% if item == 30 %}
<li style="color: red">{{ item }}</li>
{% else %}
<li {%if item == 20 %} style="color: blue" {%endif%} >{{ item }}</li>
{% endif %}
{% endfor %}
</ul>
</body>
</html>
```
*index.html* Here you can see that we are extending frim *base.html* with `{% extends "base.html" %}`.
- we can indicate a title using the `block` that we calle title.
- we can fill the content using the `block` that we calle content.
```HTML
{% extends "base.html" %}
{% block title %}Index Page{% endblock %}
{% block content %}
<h1>My First Heading</h1>
<p>My value: {{ value }}</p>
<p>My result: {{ result }}</p>
<ul>
{% for item in list %}
{% if item == 30 %}
<li style="color: red">{{ item }}</li>
{% else %}
<li {%if item == 20 %} style="color: blue" {%endif%} >{{ item }}</li>
{% endif %}
{% endfor %}
</ul>
{% endblock %}
```
*other.html* all the same rules applies here too.
```HTML
{% extends "base.html" %}
{% block title %}Other Page{% endblock %}
{% block content %}
<h1>Other</h1>
{% endblock %}
```
but here we need to add a route to this page at *app.py*
```PYTHON
@app.route('/other')
def other():
return render_template('other.html')
```
---
## Jinja [Filters](https://jinja.palletsprojects.com/en/3.0.x/templates/#filters)
Filters that python uses lin `.uppercase` can't be used in Jinja. There are some filters taht already exists but most importnatly we can create our own filters.
Here is an filter that alredy exitst which mase everything uppercase. But every filter needs to be piped trhpug Jinja thus the`|`.
```HTML
<p> {{ sometext|upper }}</p>
```
Let's create a exmaple file for filters. Create *filter.html* in templates, and add a custom Filter namde `reverse_string`
*filter.html*:
```HTML
{% extends "base.html" %}
{% block title %}Filter Page{% endblock %}
{% block content %}
<h1>Filter</h1>
<p> {{ sometext }}</p>
<p> {{ sometext|upper }}</p>
<p> {{ sometext|lower }}</p>
<p> {{ sometext|replace('l', 'L') }}</p>
<p> {{ sometext|reverse_string }}</p>
{% endblock %}
```
We of course need to define `reverse_string` in *app.py* as follows :
```PYTHON
@app.template_filter('reverse_string')
def reverse_string(s):
return s[::-1]
```
you can see that we use a speciel decorator named [template_filter](https://tedboy.github.io/flask/generated/generated/flask.Flask.template_filter.html) to declare our custom filters.
## Redirection
Redirections can be tricky but thankfully Flask has a way od dynamic *redirection* wich takes a *function* as *argument*
```PYTHON
@app.route('/redirect_endpoint')
def redirect_endpoint():
return redirect(url_for('other'))
```
the *other* in `return redirect(url_for('other'))` used above, is redirection to the `def other():`defined under V:
```PYTHON
@app.route('/wewwa')
def other():
return render_template('other.html')
```
this mean when we type [http://localhost:5000/redirect_endpoint](http://localhost:5000/redirect_endpoint) we will be redirected to [http://localhost:5000/wewwa](http://localhost:5000/wewwa) with the page defined at *other.html*
---
# GET & POST
To have some fields is much better !
Here is an example how to handle some GET & POST Methods
*app.py*
```PYTHON
@app.route('/', methods=['GET', 'POST'])
def index():
if request.method == 'GET':
return render_template('index.html')
elif request.method == 'POST':
username = request.form.get('username')
password = request.form.get('password')
if username == 'kynsight' and password == 'pass':
return 'Success'
else:
return 'Failure'
```
*inted.html*
```HTML
{% extends "base.html" %}
{% block title %}Index Page{% endblock %}
{% block content %}
<h1>Hellooo</h1>
<form method="POST" action="{{ url_for('index') }}">
<input type="text" name="username" placeholder="Username"><br>
<input type="text" name="password" placeholder="Password"><br>
<input type="submit" value="login">
</form>
{% endblock %}
```
So what is going on here ?
- First we check in `index():` function with `if request.method == 'xxx':` What *Method* is being used.
- If the *Methode* is *GET* we just print the page wiht the *Form* using `return render_template('index.html')`
- If the *Methode* is *POST* we collect the information filler in *form* sent by pressing *submit*
- We get collect the *information* by *referencing* form items by their *name* attribute : `request.form.get('username')`
- Then we can put these infiormation in varibales and use them as we please.

@ -0,0 +1,60 @@
from flask import Flask, request, make_response, Response, render_template, redirect, url_for, send_from_directory
import pandas as pd
import os
import uuid
app = Flask(__name__, template_folder='templates')
@app.route('/', methods=['GET', 'POST'])
def index():
if request.method == 'GET':
return render_template('index.html')
elif request.method == 'POST':
username = request.form.get('username')
password = request.form.get('password')
if username == 'kynsight' and password == 'pass':
return 'Success'
else:
return 'Failure'
@app.route('/file_upload', methods=['GET', 'POST'])
def file_upload():
file = request.files.get('file')
if file.content_type == 'text/plain':
return file.read().decode()
elif file.content_type == 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet' or file.content_type == 'application/vnd.ms-excel':
df = pd.read_excel(file)
return df.to_html()
@app.route('/convert_csv', methods=['GET', 'POST'])
def convert_csv():
file = request.files.get('file')
df = pd.read_excel(file)
response = Response(
df.to_csv(),
mimetype = 'text/csv',
headers={'Content-Disposition': 'attachement; filename=result.csv'}
)
return response
@app.route('/convert_csv_two', methods=['GET', 'POST'])
def convert_csv_two():
file = request.files.get('file')
df = pd.read_excel(file)
if not os.path.exists('downloads'):
os.makedirs('downloads')
filename = f'{uuid.uuid4()}.cvs'
df.to_csv(os.path.join('downloads', filename))
return render_template('download.html', filename=filename)
@app.route('/download/<filename>', methods=['GET', 'POST'])
def download(filename):
return send_from_directory('downloads', filename, download_name='result.csv')
if __name__ == '__main__':
app.run(host='0.0.0.0', port=5000, debug=True)

@ -0,0 +1,487 @@
,Pos,Category,Manufacturer,CPN,MPN,MPN_Matched,Link,Status,State,ROHS,report_belimo,Comment,CPN_Link
0,1,Resistors,Vishay,41749-01509,CMB02070X1509,CMB02070X1509JB200 ,https://app.lcm-client.com/belimo/matching/41749-01509/46de94ed90f9f5ccd2b17e508cf7765a,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/41749-01509
1,2,Resistors,Vishay,40613-01001,MCU08050D1001B,MCU08050D1001BP500,https://app.lcm-client.com/belimo/matching/40613-01001/a57dd45b8b8bfbbc6b72118464d732a4,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01001
2,3,Resistors,Vishay,40613-01002,MCU08050D1002B,MCU08050D1002BP500,https://app.lcm-client.com/belimo/matching/40613-01002/a57dd45b8b8bfbbc6b72118464d75801,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01002
3,4,Resistors,Vishay,40613-01152,MCU08050D1152B,MCU08050D1152BP500,https://app.lcm-client.com/belimo/matching/40613-01152/a57dd45b8b8bfbbc6b72118464d7859d,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01152
4,5,Resistors,Vishay,40613-01271,MCU08050D1271B,MCU08050D1271BP500,https://app.lcm-client.com/belimo/matching/40613-01271/a57dd45b8b8bfbbc6b72118464d7c5d9,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01271
5,6,Resistors,Vishay,40613-01300,MCU08050D1300B,MCU08050D1300BP500,https://app.lcm-client.com/belimo/matching/40613-01300/a57dd45b8b8bfbbc6b72118464d7dde1,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01300
6,7,Resistors,Vishay,40613-01502,MCU08050D1502B,MCU08050D1502BP500,https://app.lcm-client.com/belimo/matching/40613-01502/a57dd45b8b8bfbbc6b72118464d7f9ab,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01502
7,8,Resistors,Vishay,40613-01503,MCU08050D1503B,MCU08050D1503BP500,https://app.lcm-client.com/belimo/matching/40613-01503/a57dd45b8b8bfbbc6b72118464d80785,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01503
8,9,Resistors,Vishay,40613-01602,MCU08050D1602B,MCU08050D1602BP500,https://app.lcm-client.com/belimo/matching/40613-01602/a57dd45b8b8bfbbc6b72118464d82cc5,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01602
9,10,Resistors,Vishay,40613-02001,MCU08050D2001B,MCU08050D2001BP500,https://app.lcm-client.com/belimo/matching/40613-02001/a57dd45b8b8bfbbc6b72118464d863d6,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-02001
10,11,Resistors,Vishay,40617-01208,SMM02040C1208F,SMM02040C1208FB300,https://app.lcm-client.com/belimo/matching/40617-01208/a57dd45b8b8bfbbc6b72118464e27bef,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01208
11,12,Resistors,Vishay,40617-01208,MMA02040C1211F,MMA02040C1211FB300,https://app.lcm-client.com/belimo/matching/40617-01211/a57dd45b8b8bfbbc6b72118464e2d494,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01208
12,13,Resistors,Vishay, 40617-01211,SMM02040C1211F,SMM02040C1211FB300,https://app.lcm-client.com/belimo/matching/40617-01211/a57dd45b8b8bfbbc6b72118464e2d5e6,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/ 40617-01211
13,14,Resistors,Vishay,40617-01211,MMA02040C1308F,MMA02040C1308FB300,https://app.lcm-client.com/belimo/matching/40617-01308/a57dd45b8b8bfbbc6b72118464e330ad,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01211
14,15,Resistors,Vishay,40617-01308,SMM02040C1308F,SMM02040C1308FB300,https://app.lcm-client.com/belimo/matching/40617-01308/a57dd45b8b8bfbbc6b72118464e3356a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01308
15,16,Resistors,Vishay,40617-01308,MMA02040C1508F,MMA02040C1508FB300,https://app.lcm-client.com/belimo/matching/40617-01508/a57dd45b8b8bfbbc6b72118464e39977,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01308
16,17,Resistors,Vishay,40617-01508,SMM02040C1508F,SMM02040C1508FB300,https://app.lcm-client.com/belimo/matching/40617-01508/a57dd45b8b8bfbbc6b72118464e3a808,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01508
17,18,Resistors,Vishay,40617-01508,MMA02040C1509F,MMA02040C1509FB300,https://app.lcm-client.com/belimo/matching/40617-01509/a57dd45b8b8bfbbc6b72118464e40ddc,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01508
18,19,Resistors,Vishay,40617-01509,SMM02040C1509F,SMM02040C1509FB300,https://app.lcm-client.com/belimo/matching/40617-01509/a57dd45b8b8bfbbc6b72118464e41200,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01509
19,20,Resistors,Vishay,40617-01509,MMA02040C1800F,MMA02040C1800FB300,https://app.lcm-client.com/belimo/matching/40617-01800/a57dd45b8b8bfbbc6b72118464e48179,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01509
20,21,Resistors,Vishay,40617-03901,SMM02040C3901F,SMM02040C3901FB300,https://app.lcm-client.com/belimo/matching/40617-03901/a57dd45b8b8bfbbc6b72118464e91b53,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03901
21,22,Resistors,Vishay,40617-04301,MMA02040C4301F,MMA02040C4301FB300,https://app.lcm-client.com/belimo/matching/40617-04301/a57dd45b8b8bfbbc6b72118464e98b90,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04301
22,23,Resistors,Vishay,40617-04301,SMM02040C4301F,SMM02040C4301FB300,https://app.lcm-client.com/belimo/matching/40617-04301/a57dd45b8b8bfbbc6b72118464e9917e,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04301
23,24,Resistors,Vishay,40617-04700,MMA02040C4700F,MMA02040C4700FB300,https://app.lcm-client.com/belimo/matching/40617-04700/a57dd45b8b8bfbbc6b72118464ea276d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04700
24,25,Resistors,Vishay,40617-04700,SMM02040C4700F,SMM02040C4700FB300,https://app.lcm-client.com/belimo/matching/40617-04700/a57dd45b8b8bfbbc6b72118464ea2ceb,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04700
25,26,Resistors,Vishay,47180,MBB02070C1052F,MBB02070C1052FRP00,https://app.lcm-client.com/belimo/matching/47180/a57dd45b8b8bfbbc6b72118464f9e611,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47180
26,27,Resistors,Vishay,47181,MBB02070C7322F,MBB02070C7322FRP00,https://app.lcm-client.com/belimo/matching/47181/a57dd45b8b8bfbbc6b72118464fa0d74,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47181
27,28,Resistors,Vishay,47182,MBB02070C8062F,MBB02070C8062FR100 ,https://app.lcm-client.com/belimo/matching/47182/a57dd45b8b8bfbbc6b72118464fa284b,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47182
28,29,Resistors,Vishay,47183,MBB02070C2873F,MBB02070C2873FRP00,https://app.lcm-client.com/belimo/matching/47183/a57dd45b8b8bfbbc6b72118464fa487f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47183
29,30,Resistors,Vishay,47184,MBB02070C4304F,MBB02070C4304FRP00,https://app.lcm-client.com/belimo/matching/47184/a57dd45b8b8bfbbc6b72118464fa7121,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47184
30,31,Resistors,Vishay,47340,MBB02070C4531F,MBB02070C4531FRP00,https://app.lcm-client.com/belimo/matching/47340/a57dd45b8b8bfbbc6b72118464fbae15,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47340
31,32,Resistors,Vishay,47341,MBB02070C5601F,MBB02070C5601FRP00,https://app.lcm-client.com/belimo/matching/47341/a57dd45b8b8bfbbc6b72118464fbbb63,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47341
32,33,Resistors,Vishay,47342,MBB02070C4423F,MBB02070C4423FRP00,https://app.lcm-client.com/belimo/matching/47342/a57dd45b8b8bfbbc6b72118464fbd854,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47342
33,34,Resistors,Vishay,47343,MBB02070C2671F,MBB02070C2671FRP00,https://app.lcm-client.com/belimo/matching/47343/a57dd45b8b8bfbbc6b72118464fbf0df,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47343
34,35,Resistors,Vishay,47344,MBB02070C6202F,MBB02070C6202FRP00,https://app.lcm-client.com/belimo/matching/47344/a57dd45b8b8bfbbc6b72118464fc0ace,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47344
35,36,Resistors,Vishay,47355-01104,MBB02070C1104F,MBB02070C1104FRP00,https://app.lcm-client.com/belimo/matching/47355-01104/a57dd45b8b8bfbbc6b72118464fc27b6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01104
36,37,Resistors,Vishay,47355-01104,MRS25000C1104F,MRS25000C1104FRP00,https://app.lcm-client.com/belimo/matching/47355-01104/a57dd45b8b8bfbbc6b72118464fc3277,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01104
37,38,Resistors,Vishay,47355-01153,MBB02070C1153F,MBB02070C1153FRP00,https://app.lcm-client.com/belimo/matching/47355-01153/a57dd45b8b8bfbbc6b72118464fc55bf,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01153
38,39,Resistors,Vishay,47355-01153,MRS25000C1153F,MRS25000C1153FRP00 ,https://app.lcm-client.com/belimo/matching/47355-01153/a57dd45b8b8bfbbc6b72118464fc6578,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01153
39,40,Resistors,Vishay,47355-01208,MBB02070C1208F,MBB02070C1208FRP00,https://app.lcm-client.com/belimo/matching/47355-01208/a57dd45b8b8bfbbc6b72118464fc73ef,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01208
40,41,Resistors,Vishay,40617-04992,SMM02040C4992F,SMM02040C4992FB300,https://app.lcm-client.com/belimo/matching/40617-04992/c8cb570d5127ae96aaae8eee6648e367,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04992
41,42,Resistors,Vishay,40617-05109,MMA02040C5109F,MMA02040C5109FB300,https://app.lcm-client.com/belimo/matching/40617-05109/c8cb570d5127ae96aaae8eee66495230,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-05109
42,43,Resistors,Vishay,40617-05109,SMM02040C5109F,SMM02040C5109FB300,https://app.lcm-client.com/belimo/matching/40617-05109/c8cb570d5127ae96aaae8eee66496136,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-05109
43,44,Resistors,Vishay,40617-05601,MMA02040C5601F,MMA02040C5601FB300,https://app.lcm-client.com/belimo/matching/40617-05601/c8cb570d5127ae96aaae8eee6649c485,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-05601
44,45,Resistors,Vishay,40617-05601,SMM02040C5601F,SMM02040C5601FB300,https://app.lcm-client.com/belimo/matching/40617-05601/c8cb570d5127ae96aaae8eee6649c730,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-05601
45,46,Resistors,Vishay,40617-06208,MMA02040C6208F,MMA02040C6208FB300,https://app.lcm-client.com/belimo/matching/40617-06208/c8cb570d5127ae96aaae8eee664a2dc7,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06208
46,47,Resistors,Vishay,40617-06208,SMM02040C6208F,SMM02040C6208FB300,https://app.lcm-client.com/belimo/matching/40617-06208/c8cb570d5127ae96aaae8eee664a3d62,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06208
47,48,Resistors,Vishay,40617-06800,MMA02040C6800F,MMA02040C6800FB300,https://app.lcm-client.com/belimo/matching/40617-06800/c8cb570d5127ae96aaae8eee664aadfe,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06800
48,49,Resistors,Vishay,40617-06800,SMM02040C6800F,SMM02040C6800FB300,https://app.lcm-client.com/belimo/matching/40617-06800/c8cb570d5127ae96aaae8eee664ab3f4,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06800
49,50,Resistors,Vishay,40617-06801,MMA02040C6801F,MMA02040C6801FB300,https://app.lcm-client.com/belimo/matching/40617-06801/c8cb570d5127ae96aaae8eee664b9f72,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06801
50,51,Resistors,Vishay,40618-07502,CRCW251275K0JN,CRCW251275K0JNEG,https://app.lcm-client.com/belimo/matching/40618-07502/c8cb570d5127ae96aaae8eee664dbba8,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/40618-07502
51,52,Resistors,Vishay,40663-03307,MMB02070C3307J,MMB02070C3307JB200,https://app.lcm-client.com/belimo/matching/40663-03307/c8cb570d5127ae96aaae8eee664ded91,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40663-03307
52,53,Resistors,Vishay,40663-05107,MMB02070C5107J,MMB02070C5107JB200,https://app.lcm-client.com/belimo/matching/40663-05107/c8cb570d5127ae96aaae8eee664e0785,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40663-05107
53,54,Resistors,Vishay,40701-01001,PR01000101001F,PR01000101001FR500,https://app.lcm-client.com/belimo/matching/40701-01001/c8cb570d5127ae96aaae8eee664e1100,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40701-01001
54,55,Resistors,Vishay,40702,MBE04140C8200F,MBE04140C8200FR200,https://app.lcm-client.com/belimo/matching/40702/c8cb570d5127ae96aaae8eee664e2354,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40702
55,56,Resistors,Vishay,40703-04990,PR02000204990F,PR02000204990FR500,https://app.lcm-client.com/belimo/matching/40703-04990/c8cb570d5127ae96aaae8eee664e3084,nok,Automotive,Yes,y,Missing In LCM,https://app.lcm-client.com/belimo/part/40703-04990
56,57,Resistors,Vishay,40710-05600,CPF3560R00FKE,CPF3560R00FKEE6,https://app.lcm-client.com/belimo/matching/40710-05600/c8cb570d5127ae96aaae8eee664e4712,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40710-05600
57,58,Resistors,Vishay,40710-05600,CPF3560R00FLE,CPF3560R00FLE36,https://app.lcm-client.com/belimo/matching/40710-05600/c8cb570d5127ae96aaae8eee664e48da,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40710-05600
58,59,Resistors,Vishay,41917-02208,RCS12062R20JN,RCS12062R20JNEA,https://app.lcm-client.com/belimo/matching/41917-02208/c8cb570d5127ae96aaae8eee66591f88,ok,STD,Exption,n,,https://app.lcm-client.com/belimo/part/41917-02208
59,60,Resistors,Vishay,41917-02209,RCS120622R0JN,RCS120622R0JNEA,https://app.lcm-client.com/belimo/matching/41917-02209/c8cb570d5127ae96aaae8eee66593e8b,ok,STD,Exption,n,,https://app.lcm-client.com/belimo/part/41917-02209
60,61,Resistors,Vishay,47012-02371,MRS25000C2371F,MRS25000C2371FRP00,https://app.lcm-client.com/belimo/matching/47012-02371/c8cb570d5127ae96aaae8eee665ba18c,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-02371
61,62,Resistors,Vishay,47012-02400,MBB02070C2400F,MBB02070C2400FRP00,https://app.lcm-client.com/belimo/matching/47012-02400/c8cb570d5127ae96aaae8eee665bc184,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47012-02400
62,63,Resistors,Vishay,47012-02400,MRS25000C2400F,MRS25000C2400FRP00,https://app.lcm-client.com/belimo/matching/47012-02400/c8cb570d5127ae96aaae8eee665bcc30,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47012-02400
63,64,Resistors,Vishay,47072,MBB02070C3301F,MBB02070C3301FRP00,https://app.lcm-client.com/belimo/matching/47072/c8cb570d5127ae96aaae8eee665e3813,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47072
64,65,Resistors,Vishay,47080,MBB02070C1603F,MBB02070C1603FRP00,https://app.lcm-client.com/belimo/matching/47080/c8cb570d5127ae96aaae8eee665e5210,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47080
65,66,Resistors,Vishay,47100,MBB02070C4122F,MBB02070C4122FRP00,https://app.lcm-client.com/belimo/matching/47100/c8cb570d5127ae96aaae8eee665e71cc,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47100
66,67,Resistors,Vishay,47101,MBB02070C1479F,MBB02070C1479FRP00,https://app.lcm-client.com/belimo/matching/47101/c8cb570d5127ae96aaae8eee665e9aa1,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47101
67,68,Resistors,Vishay,47102,MBB02070C8871F,MBB02070C8871FRP00,https://app.lcm-client.com/belimo/matching/47102/c8cb570d5127ae96aaae8eee665eb013,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47102
68,69,Resistors,Vishay,47103,MBB02070C2491F,MBB02070C2491FRP00,https://app.lcm-client.com/belimo/matching/47103/c8cb570d5127ae96aaae8eee665ed09c,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47103
69,70,Resistors,Vishay,47122,MBB02070C1583F,MBB02070C1583FRP00,https://app.lcm-client.com/belimo/matching/47122/c8cb570d5127ae96aaae8eee665f1b46,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47122
70,71,Resistors,Vishay,47142,MBB02070C8201F,MBB02070C8201FRP00,https://app.lcm-client.com/belimo/matching/47142/c8cb570d5127ae96aaae8eee66606f98,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47142
71,72,Resistors,Vishay,47145,MBB02070C1203F,MBB02070C1203FRP00,https://app.lcm-client.com/belimo/matching/47145/c8cb570d5127ae96aaae8eee6660a704,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47145
72,73,Resistors,Vishay,47162,MBB02070C5362F,MBB02070C5362FRP00,https://app.lcm-client.com/belimo/matching/47162/c8cb570d5127ae96aaae8eee6660c3c6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47162
73,74,Resistors,Vishay,47168,MBB02070C3003F,MBB02070C3003FRP00,https://app.lcm-client.com/belimo/matching/47168/c8cb570d5127ae96aaae8eee6660fe68,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47168
74,75,Resistors,Vishay,47179,MBB02070C9760F,MBB02070C9760FRP00,https://app.lcm-client.com/belimo/matching/47179/c8cb570d5127ae96aaae8eee666120a3,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47179
75,76,Resistors,Vishay,40412-02701,CRCW06032K70DH,CRCW06032K70DHEAP,https://app.lcm-client.com/belimo/matching/40412-02701/ef351458b324e0850a464074929e4c4e,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/40412-02701
76,77,Resistors,Vishay,40412-02701,CRCW06032K70DK,CRCW06032K70DHEAP,https://app.lcm-client.com/belimo/matching/40412-02701/ef351458b324e0850a464074929e54c2,ok,Automotive,Exption,y,PPM Difference,https://app.lcm-client.com/belimo/part/40412-02701
77,78,Resistors,Vishay,40542,MBB02070C2702F,MBB02070C2702FRP00 ,https://app.lcm-client.com/belimo/matching/40542/ef351458b324e0850a464074929f8a38,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40542
78,79,Resistors,Vishay,40542,MBB0207IC2702F,MBB0207IC2702FRP00,https://app.lcm-client.com/belimo/matching/40542/ef351458b324e0850a464074929f962a,nok,Medical,Yes,y,Missing In LCM,https://app.lcm-client.com/belimo/part/40542
79,80,Resistors,Vishay,40542,MRS25000C2702F,MRS25000C2702FRP00,https://app.lcm-client.com/belimo/matching/40542/ef351458b324e0850a464074929f971d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40542
80,81,Resistors,Vishay,40602-01100,SMM02070C1100F,SMM02070C1100FBS00,https://app.lcm-client.com/belimo/matching/40602-01100/ef351458b324e0850a46407492a0fcf3,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01100
81,82,Resistors,Vishay,40602-01501,MMB02070C1501F,MMB02070C1501FB700,https://app.lcm-client.com/belimo/matching/40602-01501/ef351458b324e0850a46407492a1312e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01501
82,83,Resistors,Vishay,40602-01501,SMM02070C1501F,SMM02070C1501FBS00,https://app.lcm-client.com/belimo/matching/40602-01501/ef351458b324e0850a46407492a13317,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01501
83,84,Resistors,Vishay,40602-01503,MMB02070C1503F,MMB02070C1503FB200,https://app.lcm-client.com/belimo/matching/40602-01503/ef351458b324e0850a46407492a166ca,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01503
84,85,Resistors,Vishay,40602-01503,SMM02070C1503F,SMM02070C1503FBS00,https://app.lcm-client.com/belimo/matching/40602-01503/ef351458b324e0850a46407492a172df,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01503
85,86,Resistors,Vishay,40602-01801,MMB02070C1801F,MMB02070C1801FB700,https://app.lcm-client.com/belimo/matching/40602-01801/ef351458b324e0850a46407492a19e31,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01801
86,87,Resistors,Vishay,40602-01801,SMM02070C1801F,SMM02070C1801FBS00,https://app.lcm-client.com/belimo/matching/40602-01801/ef351458b324e0850a46407492a1adcd,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01801
87,88,Resistors,Vishay,40602-02201,MMB02070C2201F,MMB02070C2201FB700,https://app.lcm-client.com/belimo/matching/40602-02201/ef351458b324e0850a46407492a1e4d1,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02201
88,89,Resistors,Vishay,40602-02201,SMM02070C2201F,SMM02070C2201FBS00,https://app.lcm-client.com/belimo/matching/40602-02201/ef351458b324e0850a46407492a1e7f8,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02201
89,90,Resistors,Vishay,40602-02203,MMB02070C2203F,MMB02070C2203FB200,https://app.lcm-client.com/belimo/matching/40602-02203/ef351458b324e0850a46407492a21787,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02203
90,91,Resistors,Vishay,40602-04701,SMM02070C4701F,SMM02070C4701FBS00,https://app.lcm-client.com/belimo/matching/40602-04701/ef351458b324e0850a46407492a55cd6,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04701
91,92,Resistors,Vishay,40602-04702,MMB02070C4702F,MMB02070C4702FB200,https://app.lcm-client.com/belimo/matching/40602-04702/ef351458b324e0850a46407492a5987a,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04702
92,93,Resistors,Vishay,40602-04702,SMM02070C4702F,SMM02070C4702FBS00 ,https://app.lcm-client.com/belimo/matching/40602-04702/ef351458b324e0850a46407492a59e12,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04702
93,94,Resistors,Vishay,40602-04703,MMB02070C4703F,MMB02070C4703FB200 ,https://app.lcm-client.com/belimo/matching/40602-04703/ef351458b324e0850a46407492a5c84a,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04703
94,95,Resistors,Vishay,40602-04703,SMM02070C4703F,SMM02070C4703FBS00,https://app.lcm-client.com/belimo/matching/40602-04703/ef351458b324e0850a46407492a5cef1,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04703
95,96,Resistors,Vishay,40602-05100,MMB02070C5100F,MMB02070C5100FB700,https://app.lcm-client.com/belimo/matching/40602-05100/ef351458b324e0850a46407492a6213a,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05100
96,97,Resistors,Vishay,40602-05100,SMM02070C5100F,SMM02070C5100FBP00,https://app.lcm-client.com/belimo/matching/40602-05100/ef351458b324e0850a46407492a628ff,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05100
97,98,Resistors,Vishay,40602-05603,MMB02070C5603F,MMB02070C5603FB700,https://app.lcm-client.com/belimo/matching/40602-05603/ef351458b324e0850a46407492a653e8,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05603
98,99,Resistors,Vishay,40602-05603,SMM02070C5603F,SMM02070C5603FBS00,https://app.lcm-client.com/belimo/matching/40602-05603/ef351458b324e0850a46407492a65dfb,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05603
99,100,Resistors,Vishay,40602-05607,MMB02070C5607F,MMB02070C5607FB200,https://app.lcm-client.com/belimo/matching/40602-05607/ef351458b324e0850a46407492a66cc9,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05607
100,101,Resistors,Vishay,40613-02002,MCU08050D2002B,MCU08050D2002BP500,https://app.lcm-client.com/belimo/matching/40613-02002/a57dd45b8b8bfbbc6b72118464d889cb,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-02002
101,102,Resistors,Vishay,40613-02432,MCU08050D2431B,MCU08050D2431BP500,https://app.lcm-client.com/belimo/matching/40613-02432/a57dd45b8b8bfbbc6b72118464d8b980,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-02432
102,103,Resistors,Vishay,40613-03321,MCU08050D3321B,MCU08050D3321BP500,https://app.lcm-client.com/belimo/matching/40613-03321/a57dd45b8b8bfbbc6b72118464d8ef7d,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-03321
103,104,Resistors,Vishay,40613-03601,MCU08050D3601B,MCU08050D3601BP500,https://app.lcm-client.com/belimo/matching/40613-03601/a57dd45b8b8bfbbc6b72118464d918c6,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-03601
104,105,Resistors,Vishay,40613-04022,MCU08050D4022B,MCU08050D4022BP500,https://app.lcm-client.com/belimo/matching/40613-04022/a57dd45b8b8bfbbc6b72118464da3edf,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-04022
105,106,Resistors,Vishay,40613-06802,MCU08050D6802B,MCU08050D6802BP500,https://app.lcm-client.com/belimo/matching/40613-06802/a57dd45b8b8bfbbc6b72118464da579b,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-06802
106,107,Resistors,Vishay,40613-07871,MCU08050D7871B,MCU08050D7871BP500,https://app.lcm-client.com/belimo/matching/40613-07871/a57dd45b8b8bfbbc6b72118464da6f4d,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-07871
107,108,Resistors,Vishay,40613-09762,MCU08050D9762B,MCU08050D9762BP500,https://app.lcm-client.com/belimo/matching/40613-09762/a57dd45b8b8bfbbc6b72118464da97e7,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-09762
108,109,Resistors,Vishay,40617-01204,MMA02040C1205F,MMA02040C1205FB300,https://app.lcm-client.com/belimo/matching/40617-01204/a57dd45b8b8bfbbc6b72118464e1f209,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01204
109,110,Resistors,Vishay,40617-01208,MMA02040C1208F,MMA02040C1208FB300,https://app.lcm-client.com/belimo/matching/40617-01208/a57dd45b8b8bfbbc6b72118464e26c1f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01208
110,111,Resistors,Vishay,47215,MBB02070C3603F,MBB02070C3603FRP00,https://app.lcm-client.com/belimo/matching/47215/a57dd45b8b8bfbbc6b72118464fa91aa,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47215
111,112,Resistors,Vishay,47232,MBB02070C5622F,MBB02070C5622FRP00,https://app.lcm-client.com/belimo/matching/47232/a57dd45b8b8bfbbc6b72118464fabb7c,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47232
112,113,Resistors,Vishay,47245,MBB02070C1330F,MBB02070C1330FRP00,https://app.lcm-client.com/belimo/matching/47245/a57dd45b8b8bfbbc6b72118464fadaf4,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47245
113,114,Resistors,Vishay,47251,MBB02070C1371F,MBB02070C1371FRP00,https://app.lcm-client.com/belimo/matching/47251/a57dd45b8b8bfbbc6b72118464faf77a,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47251
114,115,Resistors,Vishay,47274,MBB02070C1108F,MBB02070C1108FRP00,https://app.lcm-client.com/belimo/matching/47274/a57dd45b8b8bfbbc6b72118464fb1287,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47274
115,116,Resistors,Vishay,47313,MBB02070C3303F,MBB02070C3303FRP00,https://app.lcm-client.com/belimo/matching/47313/a57dd45b8b8bfbbc6b72118464fb22db,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47313
116,117,Resistors,Vishay,47315,MBB02070C1604F,MBB02070C1604FRP00,https://app.lcm-client.com/belimo/matching/47315/a57dd45b8b8bfbbc6b72118464fb3e0d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47315
117,118,Resistors,Vishay,47316,MBB02070C4704F,MBB02070C4704FRP00,https://app.lcm-client.com/belimo/matching/47316/a57dd45b8b8bfbbc6b72118464fb5c4f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47316
118,119,Resistors,Vishay,47337,MBB02070C2002F,MBB02070C2002FRP00,https://app.lcm-client.com/belimo/matching/47337/a57dd45b8b8bfbbc6b72118464fb756d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47337
119,120,Resistors,Vishay,47339,MBB02070C6802F,MBB02070C6802FRP00,https://app.lcm-client.com/belimo/matching/47339/a57dd45b8b8bfbbc6b72118464fb8f39,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47339
120,121,Resistors,Vishay,40617-06801,SMM02040C6801F,SMM02040C6801FB000,https://app.lcm-client.com/belimo/matching/40617-06801/c8cb570d5127ae96aaae8eee664ba638,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06801
121,122,Resistors,Vishay,40617-06807,MMA02040C6807F,MMA02040C6807FB300,https://app.lcm-client.com/belimo/matching/40617-06807/c8cb570d5127ae96aaae8eee664c0b79,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06807
122,123,Resistors,Vishay,40617-06807,SMM02040B6807J,SMM02040B6807JB000,https://app.lcm-client.com/belimo/matching/40617-06807/c8cb570d5127ae96aaae8eee664c1061,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06807
123,124,Resistors,Vishay,40617-07502,MMA02040C7502F,MMA02040C7502FB200,https://app.lcm-client.com/belimo/matching/40617-07502/c8cb570d5127ae96aaae8eee664c7046,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-07502
124,125,Resistors,Vishay,40617-07502,SMM02040C7502F,SMM02040C7502FB000,https://app.lcm-client.com/belimo/matching/40617-07502/c8cb570d5127ae96aaae8eee664c780d,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-07502
125,126,Resistors,Vishay,40617-09107,MMA02040C9107F,MMA02040C9107FB300,https://app.lcm-client.com/belimo/matching/40617-09107/c8cb570d5127ae96aaae8eee664cd373,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-09107
126,127,Resistors,Vishay,40617-09107,SMM02040C9107F,SMM02040C9107FB000,https://app.lcm-client.com/belimo/matching/40617-09107/c8cb570d5127ae96aaae8eee664cd73a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-09107
127,128,Resistors,Vishay,40618-01001,CRCW25121K00JN,CRCW25121K00JNEG,https://app.lcm-client.com/belimo/matching/40618-01001/c8cb570d5127ae96aaae8eee664d0cdc,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/40618-01001
128,129,Resistors,Vishay,40618-01501,CRCW25121K50JN,CRCW25121K50JNEG,https://app.lcm-client.com/belimo/matching/40618-01501/c8cb570d5127ae96aaae8eee664d2f90,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/40618-01501
129,130,Resistors,Vishay,40618-02401,CRCW25122K40JN,CRCW25122K40JNEG,https://app.lcm-client.com/belimo/matching/40618-02401/c8cb570d5127ae96aaae8eee664d5a8d,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/40618-02401
130,131,Resistors,Vishay,47123,MBB02070C1873F,MBB02070C1873FRP00,https://app.lcm-client.com/belimo/matching/47123/c8cb570d5127ae96aaae8eee665f3f95,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47123
131,132,Resistors,Vishay,47125,MBB02070C1008F,MBB02070C1008FRP00,https://app.lcm-client.com/belimo/matching/47125/c8cb570d5127ae96aaae8eee665f5b74,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47125
132,133,Resistors,Vishay,47131,MBB02070C6193F,MBB02070C6193FRP00,https://app.lcm-client.com/belimo/matching/47131/c8cb570d5127ae96aaae8eee665f8495,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47131
133,134,Resistors,Vishay,47132,MBB02070C3323F,MBB02070C3323FRP00,https://app.lcm-client.com/belimo/matching/47132/c8cb570d5127ae96aaae8eee665fa357,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47132
134,135,Resistors,Vishay,47133,MBB02070C1433F,MBB02070C1433FRP00,https://app.lcm-client.com/belimo/matching/47133/c8cb570d5127ae96aaae8eee665fc181,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47133
135,136,Resistors,Vishay,47137,MBB02070C4700F,MBB02070C4700FRP00,https://app.lcm-client.com/belimo/matching/47137/c8cb570d5127ae96aaae8eee665fddc6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47137
136,137,Resistors,Vishay,47138,MBB02070C1653F,MBB02070C1653FRP00,https://app.lcm-client.com/belimo/matching/47138/c8cb570d5127ae96aaae8eee6660128b,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47138
137,138,Resistors,Vishay,47139,MBB02070C9104F,MBB02070C9104FRP00,https://app.lcm-client.com/belimo/matching/47139/c8cb570d5127ae96aaae8eee66602471,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47139
138,139,Resistors,Vishay,47140,MBB02070C3652F,MBB02070C3652FRP00,https://app.lcm-client.com/belimo/matching/47140/c8cb570d5127ae96aaae8eee6660397f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47140
139,140,Resistors,Vishay,47141,MBB02070C4873F,MBB02070C4873FRP00,https://app.lcm-client.com/belimo/matching/47141/c8cb570d5127ae96aaae8eee66605f85,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47141
140,141,Resistors,Vishay,40602-02203,SMM02070C2203F,SMM02070C2203FBS00,https://app.lcm-client.com/belimo/matching/40602-02203/ef351458b324e0850a46407492a2262b,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02203
141,142,Resistors,Vishay,40602-02204,MMB02070C2204F,MMB02070C2204FB200,https://app.lcm-client.com/belimo/matching/40602-02204/ef351458b324e0850a46407492a250b9,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02204
142,143,Resistors,Vishay,40602-02204,SMM02070C2204F,SMM02070C2204FBS00,https://app.lcm-client.com/belimo/matching/40602-02204/ef351458b324e0850a46407492a2542a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02204
143,144,Resistors,Vishay,40602-02401,MMB02070C2401F,MMB02070C2401FB200,https://app.lcm-client.com/belimo/matching/40602-02401/ef351458b324e0850a46407492a28bcc,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02401
144,145,Resistors,Vishay,40602-02401,SMM02070C2401F,SMM02070C2401FBS00,https://app.lcm-client.com/belimo/matching/40602-02401/ef351458b324e0850a46407492a295bf,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02401
145,146,Resistors,Vishay,40602-02402,MMB02070C2402F,MMB02070C2402FB200,https://app.lcm-client.com/belimo/matching/40602-02402/ef351458b324e0850a46407492a2d0e4,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02402
146,147,Resistors,Vishay,40602-02402,SMM02070C2402F,SMM02070C2402FBS00,https://app.lcm-client.com/belimo/matching/40602-02402/ef351458b324e0850a46407492a2d8ad,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02402
147,148,Resistors,Vishay,40602-02403,MMB02070C2403F,MMB02070C2403FB700,https://app.lcm-client.com/belimo/matching/40602-02403/ef351458b324e0850a46407492a2f357,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02403
148,149,Resistors,Vishay,40602-02403,SMM02070C2403F,SMM02070C2403FBP00,https://app.lcm-client.com/belimo/matching/40602-02403/ef351458b324e0850a46407492a2ffb8,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02403
149,150,Resistors,Vishay,40602-02491,MMB02070C2491F,MMB02070C2491FB700,https://app.lcm-client.com/belimo/matching/40602-02491/ef351458b324e0850a46407492a32ce6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02491
150,151,Resistors,Vishay,40602-06209,MMB02070C6209F,MMB02070C6209FB200,https://app.lcm-client.com/belimo/matching/40602-06209/ef351458b324e0850a46407492a6a237,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-06209
151,152,Resistors,Vishay,40602-06209,SMM02070C6209F,SMM02070C6209FBP00,https://app.lcm-client.com/belimo/matching/40602-06209/ef351458b324e0850a46407492a6a9a2,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-06209
152,153,Resistors,Vishay,40602-07502,MMB02070C7502F,MMB02070C7502FB700,https://app.lcm-client.com/belimo/matching/40602-07502/ef351458b324e0850a46407492a6e1c2,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-07502
153,154,Resistors,Vishay,40602-07502,SMM02070C7502F,SMM02070C7502FBS00,https://app.lcm-client.com/belimo/matching/40602-07502/ef351458b324e0850a46407492a6ee06,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-07502
154,155,Resistors,Vishay,40602-08063,MMB02070C8063F,MMB02070C8063FB700,https://app.lcm-client.com/belimo/matching/40602-08063/ef351458b324e0850a46407492a7303b,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08063
155,156,Resistors,Vishay,40602-08063,SMM02070C8063F,SMM02070C8063FBP00,https://app.lcm-client.com/belimo/matching/40602-08063/ef351458b324e0850a46407492a737bf,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08063
156,157,Resistors,Vishay,40602-08202,MMB02070C8202F,MMB02070C8202FB300,https://app.lcm-client.com/belimo/matching/40602-08202/ef351458b324e0850a46407492a76d3e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08202
157,158,Resistors,Vishay,40602-08202,SMM02070C8202F,SMM02070C8202FBS00,https://app.lcm-client.com/belimo/matching/40602-08202/ef351458b324e0850a46407492a770da,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08202
158,159,Resistors,Vishay,40602-08207,MMB02070C8207F,MMB02070C8207FB200,https://app.lcm-client.com/belimo/matching/40602-08207/ef351458b324e0850a46407492a78da5,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08207
159,160,Resistors,Vishay,40602-09100,MMB02070C9100F,MMB02070C9100FB700,https://app.lcm-client.com/belimo/matching/40602-09100/ef351458b324e0850a46407492a7a753,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-09100
160,161,Resistors,Vishay,40617-01108,SMM02040C1108F,SMM02040C1108FB300,https://app.lcm-client.com/belimo/matching/40617-01108/ef351458b324e0850a46407492bb4cca,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01108
161,162,Resistors,Vishay,40617-01201,MMA02040C1201F,MMA02040C1201FB300,https://app.lcm-client.com/belimo/matching/40617-01201/ef351458b324e0850a46407492bb95e2,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01201
162,163,Resistors,Vishay,40617-01201,SMM02040C1201F,SMM02040C1201FB000,https://app.lcm-client.com/belimo/matching/40617-01201/ef351458b324e0850a46407492bb972a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01201
163,164,Resistors,Vishay,40617-01202,MMA02040C1202F,MMA02040C1202FB000,https://app.lcm-client.com/belimo/matching/40617-01202/ef351458b324e0850a46407492bbf6a3,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01202
164,165,Resistors,Vishay,40617-01202,SMM02040C1202F,SMM02040C1202FB000,https://app.lcm-client.com/belimo/matching/40617-01202/ef351458b324e0850a46407492bbfc0f,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01202
165,166,Resistors,Vishay,40617-01801,MMA02040C1801F,MMA02040C1801FB000,https://app.lcm-client.com/belimo/matching/40617-01801/ef351458b324e0850a46407492be01bb,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01801
166,167,Resistors,Vishay,40617-01801,SMM02040C1801F,SMM02040C1801FB000,https://app.lcm-client.com/belimo/matching/40617-01801/ef351458b324e0850a46407492be0e90,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01801
167,168,Resistors,Vishay,40617-01808,MMA02040C1808F,MMA02040C1808FB000,https://app.lcm-client.com/belimo/matching/40617-01808/ef351458b324e0850a46407492be536e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01808
168,169,Resistors,Vishay,40617-01808,SMM02040C1808F,SMM02040C1808FB300,https://app.lcm-client.com/belimo/matching/40617-01808/ef351458b324e0850a46407492be5915,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01808
169,170,Resistors,Vishay,40617-02002,MMA02040C2002F,MMA02040C2002FB300,https://app.lcm-client.com/belimo/matching/40617-02002/ef351458b324e0850a46407492becaa5,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02002
170,171,Resistors,Vishay,40754,PR02FS0205608K,PR02FS0205608KR500,https://app.lcm-client.com/belimo/matching/40754/ef351458b324e0850a46407492c56031,nok,Automotive,Yes,y,Requires Update,https://app.lcm-client.com/belimo/part/40754
171,172,Resistors,Vishay,40754-01502,CPF215K000JN,CPF215K000JNEE6,https://app.lcm-client.com/belimo/matching/40754/ef351458b324e0850a46407492c56031,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40754-01502
172,173,Resistors,Vishay,40754-01502,PR02000201502J,PR02000201502JR500,https://app.lcm-client.com/belimo/matching/40754-01502/ef351458b324e0850a46407492c57dde,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40754-01502
173,174,Resistors,Vishay,40754-08201,CPF28K2000JN,CPF28K2000JNEE6,https://app.lcm-client.com/belimo/matching/40754-08201/ef351458b324e0850a46407492c580d0,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40754-08201
174,175,Resistors,Vishay,40754-08201,PR02000208201J,PR02000208201JR500,https://app.lcm-client.com/belimo/matching/40754-08201/ef351458b324e0850a46407492c5908d,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40754-08201
175,176,Resistors,Vishay,40754-15608,CPF25R6000JN,CPF25R6000JNEE6,https://app.lcm-client.com/belimo/matching/40754-15608/ef351458b324e0850a46407492c5b5db,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40754-15608
176,177,Resistors,Vishay,40754-15608,PR02000205608J,PR02000205608JR500,https://app.lcm-client.com/belimo/matching/40754-15608/ef351458b324e0850a46407492c5bcec,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40754-15608
177,178,Resistors,Vishay,40850,MBB02070C1101F,MBB02070C1101FRP00,https://app.lcm-client.com/belimo/matching/40850/ef351458b324e0850a46407492c6a39a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40850
178,179,Resistors,Vishay,40850,MRS25000C1101F,MRS25000C1101FRP00,https://app.lcm-client.com/belimo/matching/40850/ef351458b324e0850a46407492c6a870,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40850
179,180,Resistors,Vishay,40851,MBB02070C1501F,MBB02070C1501FRP00,https://app.lcm-client.com/belimo/matching/40851/ef351458b324e0850a46407492c6be78,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40851
180,181,Resistors,Vishay,40862,MRS25000C2203F,MRS25000C2203FRP00,https://app.lcm-client.com/belimo/matching/40862/ef351458b324e0850a46407492c741c4,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40862
181,182,Resistors,Vishay,40867,MBB02070C2403F,MBB02070C2403FRP00,https://app.lcm-client.com/belimo/matching/40867/ef351458b324e0850a46407492c751d7,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40867
182,183,Resistors,Vishay,40867,MRS25000C2403F,MRS25000C2403FRP00,https://app.lcm-client.com/belimo/matching/40867/ef351458b324e0850a46407492c755f8,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40867
183,184,Resistors,Vishay,40877,MBB02070C8661F,MBB02070C8661FRP00,https://app.lcm-client.com/belimo/matching/40877/ef351458b324e0850a46407492c770f6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40877
184,185,Resistors,Vishay,40877,MRS25000C8661F,MRS25000C8661FRP00,https://app.lcm-client.com/belimo/matching/40877/ef351458b324e0850a46407492c77fc8,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40877
185,186,Resistors,Vishay,40885,MBB02070C4221F,MBB02070C4221FRP00,https://app.lcm-client.com/belimo/matching/40885/ef351458b324e0850a46407492c78d94,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40885
186,187,Resistors,Vishay,40885,MRS25000C4221F,MRS25000C4221FRP00,https://app.lcm-client.com/belimo/matching/40885/ef351458b324e0850a46407492c791fe,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40885
187,188,Resistors,Vishay,40897,MBB02070C1009F,MBB02070C1009FRP00,https://app.lcm-client.com/belimo/matching/40897/ef351458b324e0850a46407492c85cab,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40897
188,189,Resistors,Vishay,40897,MRS25000C1009F,MRS25000C1009FRP00,https://app.lcm-client.com/belimo/matching/40897/ef351458b324e0850a46407492c85f06,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40897
189,190,Resistors,Vishay,40898,MBB02070C1102F,MBB02070C1102FRP00,https://app.lcm-client.com/belimo/matching/40898/ef351458b324e0850a46407492c87371,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40898
190,191,Resistors,Vishay,40926,MRS25000C8202F,MRS25000C8202FRP00,https://app.lcm-client.com/belimo/matching/40926/ef351458b324e0850a46407492c9893e,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40926
191,192,Resistors,Vishay,40927,MBB02070C1003F,MBB02070C1003FRP00,https://app.lcm-client.com/belimo/matching/40927/ef351458b324e0850a46407492c99e8a,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40927
192,193,Resistors,Vishay,40927,MRS25000C1003F,MRS25000C1003FRP00,https://app.lcm-client.com/belimo/matching/40927/ef351458b324e0850a46407492c9aaf7,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40927
193,194,Resistors,Vishay,40934,MRS25000C6202F,MRS25000C6202FRP00,https://app.lcm-client.com/belimo/matching/40934/ef351458b324e0850a46407492c9d6ee,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40934
194,195,Resistors,Vishay,40941,MBB02070C5602F,MBB02070C5602FRP00,https://app.lcm-client.com/belimo/matching/40941/ef351458b324e0850a46407492c9f1f8,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40941
195,196,Resistors,Vishay,40941,MRS25000C5602F,MRS25000C5602FRP00,https://app.lcm-client.com/belimo/matching/40941/ef351458b324e0850a46407492c9f940,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40941
196,197,Resistors,Vishay,40949,MBB02070C1500F,MBB02070C1500FRP00,https://app.lcm-client.com/belimo/matching/40949/ef351458b324e0850a46407492ca0e61,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40949
197,198,Resistors,Vishay,40949,MRS25000C1500F,MRS25000C1500FRP00,https://app.lcm-client.com/belimo/matching/40949/ef351458b324e0850a46407492ca16be,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40949
198,199,Resistors,Vishay,41237-01102,MMA02040D1102C,MMA02040D1102CB300,https://app.lcm-client.com/belimo/matching/40949/ef351458b324e0850a46407492ca16be,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/41237-01102
199,200,Resistors,Vishay,41749-02200,CMB02070X2200G,CMB02070X2200GB700,https://app.lcm-client.com/belimo/matching/41749-02200/ef351458b324e0850a46407492cb2e74,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/41749-02200
200,201,Resistors,Vishay,41861-02001,MCS04020D2001B,MCS04020D2001BE000,https://app.lcm-client.com/belimo/matching/41861-02001/ef351458b324e0850a46407492cd04a3,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/41861-02001
201,202,Resistors,Vishay,41861-02053,MCS04020D2053B,MCS04020D2053BE000,https://app.lcm-client.com/belimo/matching/41861-02053/ef351458b324e0850a46407492cd3674,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/41861-02053
202,203,Resistors,Vishay,41861-02702,MCS04020D2702B,MCS04020D2702BE000,https://app.lcm-client.com/belimo/matching/41861-02702/ef351458b324e0850a46407492cd5b69,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/41861-02702
203,204,Resistors,Vishay,41861-06802,MCS04020D6802B,MCS04020D6802BE000,https://app.lcm-client.com/belimo/matching/41861-06802/ef351458b324e0850a46407492cd9fd4,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/41861-06802
204,205,Resistors,Vishay,47012-02550,MBB02070C2550F,MBB02070C2550FRP00,https://app.lcm-client.com/belimo/matching/47012-02550/ef351458b324e0850a46407492d6899c,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/47012-02550
205,206,Resistors,Vishay,47012-02550,MRS25000C2550F,MRS25000C2550FRP00,https://app.lcm-client.com/belimo/matching/47012-02550/ef351458b324e0850a46407492d68c0f,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-02550
206,207,Resistors,Vishay,47012-03303,MRS25000C3303F,MRS25000C3303FRP00,https://app.lcm-client.com/belimo/matching/47012-03303/ef351458b324e0850a46407492d6aa08,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-03303
207,208,Resistors,Vishay,47012-03308,MBB02070C3308F,MBB02070C3308FRP00,https://app.lcm-client.com/belimo/matching/47012-03308/ef351458b324e0850a46407492d6c42d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47012-03308
208,209,Resistors,Vishay,47012-03308,MRS25000C3308F,MRS25000C3308FRP00,https://app.lcm-client.com/belimo/matching/47012-03308/ef351458b324e0850a46407492d6d03b,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-03308
209,210,Resistors,Vishay,47012-03830,MBB02070C3830F,MBB02070C3830FRP00,https://app.lcm-client.com/belimo/matching/47012-03830/ef351458b324e0850a46407492d6eaad,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/47012-03830
210,211,Resistors,Vishay,47042,MBB02070C1503F,MBB02070C1503FRP00,https://app.lcm-client.com/belimo/matching/47042/ef351458b324e0850a46407492d86be4,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/47042
211,212,Resistors,Vishay,47355-01279,MBB02070C1279F,MBB02070C1279FRP00,https://app.lcm-client.com/belimo/matching/47355-01279/ef351458b324e0850a46407492db9a16,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01279
212,213,Resistors,Vishay,47355-01279,MRS25000C1279F,MRS25000C1279FRP00,https://app.lcm-client.com/belimo/matching/47355-01279/ef351458b324e0850a46407492dba77c,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01279
213,214,Resistors,Vishay,47355-01501,MRS25000C1501F,MRS25000C1501FRP00,https://app.lcm-client.com/belimo/matching/47355-01501/ef351458b324e0850a46407492dbc315,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01501
214,215,Resistors,Vishay,47355-01653,MRS25000C1653F,MRS25000C1653FRP00,https://app.lcm-client.com/belimo/matching/47355-01653/ef351458b324e0850a46407492dbf3fd,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01653
215,216,Resistors,Vishay,47355-02671,MRS25000C2671F,MRS25000C2671FRP00,https://app.lcm-client.com/belimo/matching/47355-02671/ef351458b324e0850a46407492dc5b8c,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-02671
216,217,Resistors,Vishay,47355-03301,MRS25000C3301F,MRS25000C3301FRP00,https://app.lcm-client.com/belimo/matching/47355-03301/ef351458b324e0850a46407492dc82bf,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-03301
217,218,Resistors,Vishay,47355-05609,MBB02070C5609F,MBB02070C5609FRP00,https://app.lcm-client.com/belimo/matching/47355-05609/ef351458b324e0850a46407492dcab28,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-05609
218,219,Resistors,Vishay,47355-05609,MRS25000C5609F,MRS25000C5609FRP00,https://app.lcm-client.com/belimo/matching/47355-05609/ef351458b324e0850a46407492dcb421,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-05609
219,220,Resistors,Vishay,47355-05762,MBB02070C5762F,MBB02070C5762FRP00,https://app.lcm-client.com/belimo/matching/47355-05762/ef351458b324e0850a46407492dcdf45,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-05762
220,221,Resistors,Vishay,40617-01800,SMM02040C1800F,SMM02040C1800FB000,https://app.lcm-client.com/belimo/matching/40617-01800/a57dd45b8b8bfbbc6b72118464e48be7,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01800
221,222,Resistors,Vishay,40617-03001,MMA02040C3001F,MMA02040C3001FB000,https://app.lcm-client.com/belimo/matching/40617-03001/a57dd45b8b8bfbbc6b72118464e73cce,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03001
222,223,Resistors,Vishay,40617-03001,SMM02040C3001F,SMM02040C3001FB000,https://app.lcm-client.com/belimo/matching/40617-03001/a57dd45b8b8bfbbc6b72118464e74406,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03001
223,224,Resistors,Vishay,40617-03008,MMA02040C3008F,MMA02040C3008FB000,https://app.lcm-client.com/belimo/matching/40617-03008/a57dd45b8b8bfbbc6b72118464e79b6e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03008
224,225,Resistors,Vishay,40617-03008,SMM02040C3008F,SMM02040C3008FB000,https://app.lcm-client.com/belimo/matching/40617-03008/a57dd45b8b8bfbbc6b72118464e7a30e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03008
225,226,Resistors,Vishay,40617-03301,MMA02040C3301F,MMA02040C3301FB000,https://app.lcm-client.com/belimo/matching/40617-03301/a57dd45b8b8bfbbc6b72118464e81354,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03301
226,227,Resistors,Vishay,40617-03301,SMM02040C3301F,SMM02040C3301FB000,https://app.lcm-client.com/belimo/matching/40617-03301/a57dd45b8b8bfbbc6b72118464e818d6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03301
227,228,Resistors,Vishay,40617-03303,MMA02040C3303F,MMA02040C3303FB000,https://app.lcm-client.com/belimo/matching/40617-03303/a57dd45b8b8bfbbc6b72118464e88cee,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03303
228,229,Resistors,Vishay,40617-03303,SMM02040C3303F,SMM02040C3303FB000,https://app.lcm-client.com/belimo/matching/40617-03303/a57dd45b8b8bfbbc6b72118464e896d0,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03303
229,230,Resistors,Vishay,40617-03901,MMA02040C3901F,MMA02040C3901FB000,https://app.lcm-client.com/belimo/matching/40617-03901/a57dd45b8b8bfbbc6b72118464e90c53,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03901
230,231,Resistors,Vishay,47001,MBB02070C1202F,MBB02070C1202FRP00,https://app.lcm-client.com/belimo/matching/47001/c8cb570d5127ae96aaae8eee665a9f99,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47001
231,232,Resistors,Vishay,47002,MBB02070C1000F,MBB02070C1000FRP00,https://app.lcm-client.com/belimo/matching/47002/c8cb570d5127ae96aaae8eee665abee6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47002
232,233,Resistors,Vishay,47004,MBB02070C1804F,MBB02070C1804FRP00,https://app.lcm-client.com/belimo/matching/47004/c8cb570d5127ae96aaae8eee665ae642,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47004
233,234,Resistors,Vishay,47007,MBB02070C3002F,MBB02070C3002FRP00,https://app.lcm-client.com/belimo/matching/47007/c8cb570d5127ae96aaae8eee665b0d45,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47007
234,235,Resistors,Vishay,47008,MBB02070C4701F,MBB02070C4701FRP00,https://app.lcm-client.com/belimo/matching/47008/c8cb570d5127ae96aaae8eee665b34df,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47008
235,236,Resistors,Vishay,47011,MBB02070C1502F,MBB02070C1502FRP00,https://app.lcm-client.com/belimo/matching/47011/c8cb570d5127ae96aaae8eee665b5e12,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47011
236,237,Resistors,Vishay,47012-01001,MBB02070C1001F,MBB02070C1001FRP00,https://app.lcm-client.com/belimo/matching/47012-01001/c8cb570d5127ae96aaae8eee665b7c87,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47012-01001
237,238,Resistors,Vishay,47012-01001,MRS25000C1001F,MRS25000C1001FRP00,https://app.lcm-client.com/belimo/matching/47012-01001/c8cb570d5127ae96aaae8eee665b7ef3,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-01001
238,239,Resistors,Vishay,47012-02371,MBB02070C2371F,MBB02070C2371FRP00,https://app.lcm-client.com/belimo/matching/47012-02371/c8cb570d5127ae96aaae8eee665b92cf,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47012-02371
239,240,Resistors,Vishay,40602-01100,MMB02070C1100F,MMB02070C1100FB700,https://app.lcm-client.com/belimo/matching/40602-01100/ef351458b324e0850a46407492a0f34b,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01100
240,241,Resistors,Vishay,40602-02491,SMM02070C2491F,SMM02070C2491FBP00,https://app.lcm-client.com/belimo/matching/40602-02491/ef351458b324e0850a46407492a32d66,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02491
241,242,Resistors,Vishay,40602-02703,MMB02070C2703F,MMB02070C2703FB700,https://app.lcm-client.com/belimo/matching/40602-02703/ef351458b324e0850a46407492a36b57,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02703
242,243,Resistors,Vishay,40602-02703,SMM02070C2703F,SMM02070C2703FBS00,https://app.lcm-client.com/belimo/matching/40602-02703/ef351458b324e0850a46407492a3748f,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02703
243,244,Resistors,Vishay,40602-03000,MMB02070C3000F,MMB02070C3000FB700,https://app.lcm-client.com/belimo/matching/40602-03000/ef351458b324e0850a46407492a3b4b3,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-03000
244,245,Resistors,Vishay,40602-03000,SMM02070C3000F,SMM02070C3000FBS00,https://app.lcm-client.com/belimo/matching/40602-03000/ef351458b324e0850a46407492a3be47,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-03000
245,246,Resistors,Vishay,40602-03303,MMB02070C3303F,MMB02070C3303FB700,https://app.lcm-client.com/belimo/matching/40602-03303/ef351458b324e0850a46407492a3dded,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-03303
246,247,Resistors,Vishay,40602-03303,SMM02070C3303F,SMM02070C3303FBS00,https://app.lcm-client.com/belimo/matching/40602-03303/ef351458b324e0850a46407492a3e67a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-03303
247,248,Resistors,Vishay,40602-04700,MMB02070C4700F,MMB02070C4700FB700,https://app.lcm-client.com/belimo/matching/40602-04700/ef351458b324e0850a46407492a51eab,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04700
248,249,Resistors,Vishay,40602-04700,SMM02070C4700F,SMM02070C4700FBP00,https://app.lcm-client.com/belimo/matching/40602-04700/ef351458b324e0850a46407492a52341,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04700
249,250,Resistors,Vishay,40617-01108,MMA02040C1108F,MMA02040C1108FB000,https://app.lcm-client.com/belimo/matching/40617-01108/ef351458b324e0850a46407492bb453c,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01108
250,251,Resistors,Vishay,40617-02002,SMM02040C2002F,SMM02040C2002FB000,https://app.lcm-client.com/belimo/matching/40617-02002/ef351458b324e0850a46407492bed203,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02002
251,252,Resistors,Vishay,40617-02008,MMA02040C2008F,MMA02040C2008FB000,https://app.lcm-client.com/belimo/matching/40617-02008/ef351458b324e0850a46407492bf3690,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02008
252,253,Resistors,Vishay,40617-02008,SMM02040C2008F,SMM02040C2008FB000,https://app.lcm-client.com/belimo/matching/40617-02008/ef351458b324e0850a46407492bf3890,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02008
253,254,Resistors,Vishay,40617-02201,MMA02040C2001F,MMA02040C2001FB000,https://app.lcm-client.com/belimo/matching/40617-02201/ef351458b324e0850a46407492bfa0e4,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02201
254,255,Resistors,Vishay,40617-02201,SMM02040C2201F,SMM02040C2201FB000,https://app.lcm-client.com/belimo/matching/40617-02201/ef351458b324e0850a46407492bfaa90,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02201
255,256,Resistors,Vishay,40617-02202,SMM02040C2202F,SMM02040C2202FB000,https://app.lcm-client.com/belimo/matching/40617-02202/ef351458b324e0850a46407492c02755,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02202
256,257,Resistors,Vishay,40617-02402,MMA02040C2402F,MMA02040C2402FB000,https://app.lcm-client.com/belimo/matching/40617-02402/ef351458b324e0850a46407492c086bf,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02402
257,258,Resistors,Vishay,40617-02402,SMM02040C2402F,SMM02040C2402FB000,https://app.lcm-client.com/belimo/matching/40617-02402/ef351458b324e0850a46407492c09313,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02402
258,259,Resistors,Vishay,40617-02408,MMA02040C2408F,MMA02040C2408FB000,https://app.lcm-client.com/belimo/matching/40617-02408/ef351458b324e0850a46407492c0cc99,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02408
259,260,Resistors,Vishay,40862,MBB02070C2203F,MBB02070C2203FRP00,https://app.lcm-client.com/belimo/matching/40862/ef351458b324e0850a46407492c74003,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40862
260,261,Resistors,Vishay,40898,MRS25000C1102F,MRS25000C1102FRP00,https://app.lcm-client.com/belimo/matching/40898/ef351458b324e0850a46407492c879f0,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40898
261,262,Resistors,Vishay,40901,MBB02070C4992F,MBB02070C4992FRP00,https://app.lcm-client.com/belimo/matching/40901/ef351458b324e0850a46407492c8980e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40901
262,263,Resistors,Vishay,40901,MRS25000C4992F,MRS25000C4992FRP00,https://app.lcm-client.com/belimo/matching/40901/ef351458b324e0850a46407492c8a5f3,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40901
263,264,Resistors,Vishay,40913,MBB02070C2201F,MBB02070C2201FRP00,https://app.lcm-client.com/belimo/matching/40913/ef351458b324e0850a46407492c8cd11,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40913
264,265,Resistors,Vishay,40913,MRS25000C2201F,MRS25000C2201FRP00,https://app.lcm-client.com/belimo/matching/40913/ef351458b324e0850a46407492c8ced5,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40913
265,266,Resistors,Vishay,40915,MRS25000C6802F,MRS25000C6802FRP00,https://app.lcm-client.com/belimo/matching/40915/ef351458b324e0850a46407492c8f08b,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40915
266,267,Resistors,Vishay,40919,MRS25000C8201F,MRS25000C8201FRP00,https://app.lcm-client.com/belimo/matching/40919/ef351458b324e0850a46407492c91498,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40919
267,268,Resistors,Vishay,40924,MBB02070C1002F,MBB02070C1002FRP00,https://app.lcm-client.com/belimo/matching/40924/ef351458b324e0850a46407492c95e69,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40924
268,269,Resistors,Vishay,40924,MRS25000C1002F,MRS25000C1002FRP00,https://app.lcm-client.com/belimo/matching/40924/ef351458b324e0850a46407492c9667f,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40924
269,270,Resistors,Vishay,41861-01003,MCS04020D1003B,MCS04020D1003BE500,https://app.lcm-client.com/belimo/matching/41861-01003/ef351458b324e0850a46407492ccbe77,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/41861-01003
270,271,Resistors,Vishay,47012-03830,MRS25000C3830F,MRS25000C3830FRP00,https://app.lcm-client.com/belimo/matching/47012-03830/ef351458b324e0850a46407492d6f482,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-03830
271,272,Resistors,Vishay,47012-04531,MRS25000C4531F,MRS25000C4531FRP00,https://app.lcm-client.com/belimo/matching/47012-04531/ef351458b324e0850a46407492d71357,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-04531
272,273,Resistors,Vishay,47012-06192,MBB02070C6192F,MBB02070C6192FRP00,https://app.lcm-client.com/belimo/matching/47012-06192/ef351458b324e0850a46407492d72930,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47012-06192
273,274,Resistors,Vishay,47012-06192,MRS25000C6192F,MRS25000C6192FRP00,https://app.lcm-client.com/belimo/matching/47012-06192/ef351458b324e0850a46407492d735ec,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-06192
274,275,Resistors,Vishay,47013,MBB02070C5600F,MBB02070C5600FRP00,https://app.lcm-client.com/belimo/matching/47013/ef351458b324e0850a46407492d77c2d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47013
275,276,Resistors,Vishay,47016,MBB02070C2102F,MBB02070C2102FRP00,https://app.lcm-client.com/belimo/matching/47016/ef351458b324e0850a46407492d79a35,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47016
276,277,Resistors,Vishay,47017,MBB02070C2802F,MBB02070C2802FRP00,https://app.lcm-client.com/belimo/matching/47017/ef351458b324e0850a46407492d7bc7e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47017
277,278,Resistors,Vishay,47030,MBB02070C1004F,MBB02070C1004FRP00,https://app.lcm-client.com/belimo/matching/47030/ef351458b324e0850a46407492d7ea45,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47030
278,279,Resistors,Vishay,47035,MBB02070C1802F,MBB02070C1802FRP00,https://app.lcm-client.com/belimo/matching/47035/ef351458b324e0850a46407492d82ea5,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47035
279,280,Resistors,Vishay,47355-01208,MRS25000C1208F,MRS25000C1208FRP00,https://app.lcm-client.com/belimo/matching/47355-01208/a57dd45b8b8bfbbc6b72118464fc8178,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01208
280,281,Resistors,Vishay,47355-01209,MBB02070C1209F,MBB02070C1209FRP00,https://app.lcm-client.com/belimo/matching/47355-01209/a57dd45b8b8bfbbc6b72118464fca02d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01209
281,282,Resistors,Vishay,47355-01209,MRS25000C1209F,MRS25000C1209FRP00,https://app.lcm-client.com/belimo/matching/47355-01209/a57dd45b8b8bfbbc6b72118464fcacd1,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01209
282,283,Resistors,Vishay,40617-01001,MMA02040C1001F,MMA02040C1001FB000,https://app.lcm-client.com/belimo/matching/40617-01001/c8cb570d5127ae96aaae8eee66425d73,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01001
283,284,Resistors,Vishay,40617-01001,SMM02040C1001F,SMM02040C1001FB000,https://app.lcm-client.com/belimo/matching/40617-01001/c8cb570d5127ae96aaae8eee664273bd,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01001
284,285,Resistors,Vishay,40617-04701,MMA02040C4701F,MMA02040C4701FB000,https://app.lcm-client.com/belimo/matching/40617-04701/c8cb570d5127ae96aaae8eee66480626,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04701
285,286,Resistors,Vishay,40617-04701,SMM02040C4701F,SMM02040C4701FB000,https://app.lcm-client.com/belimo/matching/40617-04701/c8cb570d5127ae96aaae8eee66480c80,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04701
286,287,Resistors,Vishay,40617-04708,MMA02040C4708F,MMA02040C4708FB000,https://app.lcm-client.com/belimo/matching/40617-04708/c8cb570d5127ae96aaae8eee66486f7f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04708
287,288,Resistors,Vishay,40617-04708,SMM02040C4708F,SMM02040C4708FB000,https://app.lcm-client.com/belimo/matching/40617-04708/c8cb570d5127ae96aaae8eee6648785d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04708
288,289,Resistors,Vishay,40617-04992,MMA02040C4992F,MMA02040C4992FB000,https://app.lcm-client.com/belimo/matching/40617-04992/c8cb570d5127ae96aaae8eee6648d911,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04992
289,290,Resistors,Vishay,40602-04701,MMB02070C4701F,MMB02070C4701FB700,https://app.lcm-client.com/belimo/matching/40602-04701/ef351458b324e0850a46407492a55a67,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04701
290,291,Resistors,Vishay,40602-09100,SMM02070C9100F,SMM02070C9100FBS00,https://app.lcm-client.com/belimo/matching/40602-09100/ef351458b324e0850a46407492a7a870,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-09100
291,292,Resistors,Vishay,40617-01002,MMA02040C1002F,MMA02040C1002FB000,https://app.lcm-client.com/belimo/matching/40617-01002/ef351458b324e0850a46407492b97ffb,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01002
292,293,Resistors,Vishay,40617-01002,SMM02040C1002F,SMM02040C1002FB000,https://app.lcm-client.com/belimo/matching/40617-01002/ef351458b324e0850a46407492b98f3c,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01002
293,294,Resistors,Vishay,40617-01003,MMA02040C1003F,MMA02040C1003FB000,https://app.lcm-client.com/belimo/matching/40617-01003/ef351458b324e0850a46407492b9d7bd,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01003
294,295,Resistors,Vishay,40617-01003,SMM02040C1003F,SMM02040C1003FB000,https://app.lcm-client.com/belimo/matching/40617-01003/ef351458b324e0850a46407492b9e217,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01003
295,296,Resistors,Vishay,40617-01008,MMA02040C1008F,MMA02040C1008FB000,https://app.lcm-client.com/belimo/matching/40617-01008/ef351458b324e0850a46407492ba4463,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01008
296,297,Resistors,Vishay,40617-01008,SMM02040C1008F,SMM02040C1008FB000,https://app.lcm-client.com/belimo/matching/40617-01008/ef351458b324e0850a46407492ba493f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01008
297,298,Resistors,Vishay,40617-01009,MMA02040C1009F,MMA02040C1009FB000,https://app.lcm-client.com/belimo/matching/40617-01009/ef351458b324e0850a46407492baaa84,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01009
298,299,Resistors,Vishay,40617-01009,SMM02040C1009F,SMM02040C1009FB000,https://app.lcm-client.com/belimo/matching/40617-01009/ef351458b324e0850a46407492bab791,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01009
299,300,Resistors,Vishay,40926,MBB02070C8202F,MBB02070C8202FRP00,https://app.lcm-client.com/belimo/matching/40926/ef351458b324e0850a46407492c97f9f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40926
300,301,Resistors,Vishay,41749-06800,CMB02070X6800G,CMB02070X6800GB700,https://app.lcm-client.com/belimo/matching/41749-06800/ef351458b324e0850a46407492cb3c37,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/41749-06800
301,302,Resistors,Vishay,41770-02401,CRCW12182K40FK,CRCW12182K40FKEK,https://app.lcm-client.com/belimo/matching/41770-02401/ef351458b324e0850a46407492cb4b4c,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41770-02401
302,303,Resistors,Vishay,41770-02401,RCL12182K40FK,RCL12182K40FKEK,https://app.lcm-client.com/belimo/matching/41770-02401/ef351458b324e0850a46407492cb5a01,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41770-02401
303,304,Resistors,Vishay,41770-02709,CRCW121827R0FK,CRCW121827R0FKEK,https://app.lcm-client.com/belimo/matching/41770-02709/ef351458b324e0850a46407492cb724c,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41770-02709
304,305,Resistors,Vishay,41770-02709,RCL121827R0FK,RCL121827R0FKEK,https://app.lcm-client.com/belimo/matching/41770-02709/ef351458b324e0850a46407492cb7c46,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41770-02709
305,306,Resistors,Vishay,41770-09100,CRCW1218910RFK,CRCW1218910RFKEK,https://app.lcm-client.com/belimo/matching/41770-09100/ef351458b324e0850a46407492cb859c,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41770-09100
306,307,Resistors,Vishay,41770-09100,RCL1218910RFK,RCL1218910RFKEK,https://app.lcm-client.com/belimo/matching/41770-09100/ef351458b324e0850a46407492cb8df7,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41770-09100
307,308,Resistors,Vishay,41807-08208,CRCW25128R20JN,CRCW25128R20JNEG,https://app.lcm-client.com/belimo/matching/41807-08208/ef351458b324e0850a46407492cc6d55,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41807-08208
308,309,Resistors,Vishay,41857-04700,CMA02040X4700G,CMA02040X4700GB300,https://app.lcm-client.com/belimo/matching/41857-04700/ef351458b324e0850a46407492cc8de1,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/41857-04700
309,310,Resistors,Vishay,40550,MBB0207IC1203F,MBB0207IC1203FRP00,https://app.lcm-client.com/belimo/matching/40550/ef351458b324e0850a464074929fa8a6,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40550
310,311,Resistors,Vishay,40550,MRS25000C1203F,MRS25000C1203FRP00,https://app.lcm-client.com/belimo/matching/40550/ef351458b324e0850a464074929faa94,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40550
311,312,Resistors,Vishay,40602-01001,MMB02070C1001F,MMB02070C1001FB700,https://app.lcm-client.com/belimo/matching/40602-01001/ef351458b324e0850a464074929fd84b,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01001
312,313,Resistors,Vishay,40602-01001,SMM02070C1001F,SMM02070C1001FBS00,https://app.lcm-client.com/belimo/matching/40602-01001/ef351458b324e0850a464074929fe654,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01001
313,314,Resistors,Vishay,40602-01002,MMB02070C1002F,MMB02070C1002FB700,https://app.lcm-client.com/belimo/matching/40602-01002/ef351458b324e0850a46407492a00ad0,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01002
314,315,Resistors,Vishay,40602-01002,SMM02070C1002F,SMM02070C1002FBS00,https://app.lcm-client.com/belimo/matching/40602-01002/ef351458b324e0850a46407492a00ede,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01002
315,316,Resistors,Vishay,40602-01004,MMB02070C1004F,MMB02070C1004FB700,https://app.lcm-client.com/belimo/matching/40602-01004/ef351458b324e0850a46407492a03473,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01004
316,317,Resistors,Vishay,40602-01004,SMM02070C1004F,SMM02070C1004FBS00,https://app.lcm-client.com/belimo/matching/40602-01004/ef351458b324e0850a46407492a03d9c,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01004
317,318,Resistors,Vishay,40861,MBB02070C2202F,MBB02070C2202FRP00,https://app.lcm-client.com/belimo/matching/40861/ef351458b324e0850a46407492c733f0,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40861
318,319,Resistors,Vishay,40861,MRS25000C2202F,MRS25000C2202FRP00,https://app.lcm-client.com/belimo/matching/40861/ef351458b324e0850a46407492c73735,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40861
319,320,Resistors,Vishay,47038,MBB02070C1103F,MBB02070C1103FRP00,https://app.lcm-client.com/belimo/matching/47038/ef351458b324e0850a46407492d84967,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47038
320,321,Resistors,Vishay,47355-05762,MRS25000C5762F,MRS25000C5762FRP00,https://app.lcm-client.com/belimo/matching/47355-05762/ef351458b324e0850a46407492dceb65,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-05762
321,322,Resistors,Vishay,47355-07503,MBB02070C7503F,MBB02070C7503FRP00,https://app.lcm-client.com/belimo/matching/47355-07503/ef351458b324e0850a46407492dd0a2c,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-07503
322,323,Resistors,Vishay,47355-07503,MRS25000C7503F,MRS25000C7503FRP00,https://app.lcm-client.com/belimo/matching/47355-07503/ef351458b324e0850a46407492dd1062,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-07503
323,324,Resistors,Vishay,47355-09102,MBB02070C9102F,MBB02070C9102FRP00,https://app.lcm-client.com/belimo/matching/47355-09102/ef351458b324e0850a46407492dd3bb8,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-09102
324,325,Resistors,Vishay,47355-09102,MRS25000C9102F,MRS25000C9102FRP00,https://app.lcm-client.com/belimo/matching/47355-09102/ef351458b324e0850a46407492dd4037,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-09102
325,326,Resistors,Vishay,47355-42200,MBB02070C2200F,MBB02070C2200FRP00,https://app.lcm-client.com/belimo/matching/47355-42200/ef351458b324e0850a46407492dd65ba,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-42200
326,327,Resistors,Vishay,47355-42200,MRS25000C2200F,MRS25000C2200FRP00,https://app.lcm-client.com/belimo/matching/47355-42200/ef351458b324e0850a46407492dd696b,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-42200
327,328,Resistors,Vishay,40617-02408,SMM02040C2408F,SMM02040C2408FB000,https://app.lcm-client.com/belimo/matching/40617-02408/ef351458b324e0850a46407492c0d2b0,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02408
328,329,Resistors,Vishay,40852,MBB02070C4702F,MBB02070C4702FRP00,https://app.lcm-client.com/belimo/matching/40852/ef351458b324e0850a46407492c6d60f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40852
329,330,Resistors,Vishay,40852,MRS25000C4702F,MRS25000C4702FRP00,https://app.lcm-client.com/belimo/matching/40852/ef351458b324e0850a46407492c6e1c7,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40852
330,331,Resistors,Vishay,40853,MBB02070C5902F,MBB02070C5902FRP00,https://app.lcm-client.com/belimo/matching/40853/ef351458b324e0850a46407492c703d9,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40853
331,332,Resistors,Vishay,40853,MRS25000C5902F,MRS25000C5902FRP00,https://app.lcm-client.com/belimo/matching/40853/ef351458b324e0850a46407492c70733,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40853
332,333,Resistors,Vishay,40860,MBB02070C3001F,MBB02070C3001FRP00,https://app.lcm-client.com/belimo/matching/40860/ef351458b324e0850a46407492c71d0c,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40860
333,334,Resistors,Vishay,40860,MRS25000C3001F,MRS25000C3001FRP00,https://app.lcm-client.com/belimo/matching/40860/ef351458b324e0850a46407492c72721,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40860
334,335,Resistors,Vishay,47355-44700,MRS25000C4700F,MRS25000C4700FRP00,https://app.lcm-client.com/belimo/matching/47355-44700/ef351458b324e0850a46407492dd925e,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-44700
335,336,Resistors,TT Electronics,40617-01204,WRM0204C1M2FI,WRM0204C-1M2FI,https://app.lcm-client.com/belimo/matching/40617-01204/a57dd45b8b8bfbbc6b72118464e1e61b,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01204
336,337,Resistors,TT Electronics,40617-01211,WRM0204C1K21FI,WRM0204C-470RFI,https://app.lcm-client.com/belimo/matching/40617-01211/a57dd45b8b8bfbbc6b72118464e2c13b,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01211
337,338,Resistors,TT Electronics,40617-01800,WRM0204C180RFI,WRM0204C180RFI,https://app.lcm-client.com/belimo/matching/40617-01800/a57dd45b8b8bfbbc6b72118464e475a3,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01800
338,339,Resistors,TT Electronics,40617-01801,WRM0204C1K8FI,WRM0204C-1K8FI,https://app.lcm-client.com/belimo/matching/40617-01801/a57dd45b8b8bfbbc6b72118464e4ef28,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01801
339,340,Resistors,TT Electronics,40617-03303,WRM0204C330KFI,WRM0204C-330KFI,https://app.lcm-client.com/belimo/matching/40617-03303/a57dd45b8b8bfbbc6b72118464e87aed,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03303
340,341,Resistors,TT Electronics,40617-04700,WRM0204C470RFI,WRM0204C-470RFI,https://app.lcm-client.com/belimo/matching/40617-04700/a57dd45b8b8bfbbc6b72118464ea09cb,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04700
341,342,Resistors,TT Electronics,40615-02002,PCF1206-R-20KB,PCF1206R-20KBT1 ,https://app.lcm-client.com/belimo/matching/40615-02002/c8cb570d5127ae96aaae8eee663f84a2,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02002
342,343,Resistors,TT Electronics,40615-02202,PCF1206-R-22KB,PCF1206R-22KBT1,https://app.lcm-client.com/belimo/matching/40615-02202/c8cb570d5127ae96aaae8eee663fadb4,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02202
343,344,Resistors,TT Electronics,40615-02372,PCF1206-R-56KB,PCF1206R-56KBT1,https://app.lcm-client.com/belimo/matching/40615-02202/c8cb570d5127ae96aaae8eee663fadb4,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02372
344,345,Resistors,TT Electronics,40615-02402,PCF1206-R-24KB,PCF1206R-24KBT1,https://app.lcm-client.com/belimo/matching/40615-02402/c8cb570d5127ae96aaae8eee664021c3,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02402
345,346,Resistors,TT Electronics,40615-02492,PCF1206-R-24K9B,PCF1206R-24K9BT1,https://app.lcm-client.com/belimo/matching/40615-02492/c8cb570d5127ae96aaae8eee66405af8,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02492
346,347,Resistors,TT Electronics,40615-02552,PCF1206-R-25K5B,PCF1206R-25K5BT1,https://app.lcm-client.com/belimo/matching/40615-02552/c8cb570d5127ae96aaae8eee664087ff,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02552
347,348,Resistors,TT Electronics,40615-02702,PCF1206-R-27KB,PCF1206R-27KBT1,https://app.lcm-client.com/belimo/matching/40615-02702/c8cb570d5127ae96aaae8eee6640c2eb,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02702
348,349,Resistors,TT Electronics,40615-03922,PCF1206-R-39K2B,PCF1206R-39K2BT1,https://app.lcm-client.com/belimo/matching/40615-03922/c8cb570d5127ae96aaae8eee6640ff82,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-03922
349,350,Resistors,TT Electronics,40615-06812,PCF1206-R-68K1B,PCF1206R-68K1BT1,https://app.lcm-client.com/belimo/matching/40615-06812/c8cb570d5127ae96aaae8eee6641618e,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-06812
350,351,Resistors,TT Electronics,40615-06982,PCF1206-R-69K8B,PCF1206R-69K8BT1,https://app.lcm-client.com/belimo/matching/40615-06982/c8cb570d5127ae96aaae8eee66419452,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-06982
351,352,Resistors,TT Electronics,40615-08201,PCF1206-R-8K2B,PCF1206R-8K2BT1,https://app.lcm-client.com/belimo/matching/40615-08201/c8cb570d5127ae96aaae8eee6641c3da,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-08201
352,353,Resistors,TT Electronics,40617-01001,WRM0204C1KFI,WRM0204C-1K0FI,https://app.lcm-client.com/belimo/matching/40617-01001/c8cb570d5127ae96aaae8eee66425552,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01001
353,354,Resistors,TT Electronics,40617-04701,WRM0204C4K7FI,WRM0204C-4K7FI,https://app.lcm-client.com/belimo/matching/40617-04701/c8cb570d5127ae96aaae8eee6647ff02,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04701
354,355,Resistors,TT Electronics,40617-04992,WRM0204C49K9FI,WRM0204C-49K9FI,https://app.lcm-client.com/belimo/matching/40617-04992/c8cb570d5127ae96aaae8eee6648bd7f,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04992
355,356,Resistors,TT Electronics,40617-05109,WRM0204C51RFI,WRM0204C-51RFI,https://app.lcm-client.com/belimo/matching/40617-05109/c8cb570d5127ae96aaae8eee664944ae,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-05109
356,357,Resistors,TT Electronics,40617-05601,WRM0204C5K6FI,WRM0204C-5K6FI,https://app.lcm-client.com/belimo/matching/40617-05601/c8cb570d5127ae96aaae8eee6649b46b,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-05601
357,358,Resistors,TT Electronics,40617-06800,WRM0204C680RFI,WRM0204C-680RFI,https://app.lcm-client.com/belimo/matching/40617-06800/c8cb570d5127ae96aaae8eee664a97c6,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06800
358,359,Resistors,TT Electronics,40617-06801,WRM0204C6K8FI,WRM0204C-6K8FI,https://app.lcm-client.com/belimo/matching/40617-06801/c8cb570d5127ae96aaae8eee664b8a2f,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06801
359,360,Resistors,TT Electronics,40617-07502,WRM0204C75KFI,WRM0204C-75KFI,https://app.lcm-client.com/belimo/matching/40617-07502/c8cb570d5127ae96aaae8eee664c65a4,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-07502
360,361,Resistors,TT Electronics,40602-01001,WRM0207HPC-1K0F,WRM0207HPC-1K0FT2,https://app.lcm-client.com/belimo/matching/40602-01001/ef351458b324e0850a464074929fc757,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01001
361,362,Resistors,TT Electronics,40602-01002,WRM0207HPC-10KF,WRM0207HPC-10KFT2,https://app.lcm-client.com/belimo/matching/40602-01002/ef351458b324e0850a46407492a0014a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01002
362,363,Resistors,TT Electronics,40602-01004,WRM0207HPC-1M0F,WRM0207HPC-1M0FT2,https://app.lcm-client.com/belimo/matching/40602-01004/ef351458b324e0850a46407492a0258e,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01004
363,364,Resistors,TT Electronics,40602-01100,WRM0207HPC-110RF,WRM0207HPC-110RFT2,https://app.lcm-client.com/belimo/matching/40602-01100/ef351458b324e0850a46407492a0d9d9,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01100
364,365,Resistors,TT Electronics,40602-01501,WRM0207HPC-1K5F,WRM0207HPC-1K5FT2,https://app.lcm-client.com/belimo/matching/40602-01501/ef351458b324e0850a46407492a118c9,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01501
365,366,Resistors,TT Electronics,40602-01503,WRM0207HPC-150KF,WRM0207HPC-150KFT2,https://app.lcm-client.com/belimo/matching/40602-01503/ef351458b324e0850a46407492a15498,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01503
366,367,Resistors,TT Electronics,40602-01801,WRM0207HPC-1K8F,WRM0207HPC-1K8FT2,https://app.lcm-client.com/belimo/matching/40602-01801/ef351458b324e0850a46407492a19513,ok,Automotive,Yes,y,Requires Update,https://app.lcm-client.com/belimo/part/40602-01801
367,368,Resistors,TT Electronics,40602-02201,WRM0207HPC-2K2F,WRM0207HPC-2K2FT2,https://app.lcm-client.com/belimo/matching/40602-02201/ef351458b324e0850a46407492a1c7a2,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02201
368,369,Resistors,TT Electronics,40602-02203,WRM0207HPC-220KF,WRM0207HPC-220KFT2,https://app.lcm-client.com/belimo/matching/40602-02203/ef351458b324e0850a46407492a208f7,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02203
369,370,Resistors,TT Electronics,40602-02401,WRM0207HPC-2K4F,WRM0207HPC-2K4FT2,https://app.lcm-client.com/belimo/matching/40602-02401/ef351458b324e0850a46407492a27710,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02401
370,371,Resistors,TT Electronics,40602-02402,WRM0207HPC-24KF,WRM0207HPC-24KFT2,https://app.lcm-client.com/belimo/matching/40602-02402/ef351458b324e0850a46407492a2b96e,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02402
371,372,Resistors,TT Electronics,40602-02403,WRM0207HPC-240KF,WRM0207HPC-240KFT2,https://app.lcm-client.com/belimo/matching/40602-02403/ef351458b324e0850a46407492a2ea6d,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02403
372,373,Resistors,TT Electronics,40602-02491,WRM0207HPC-2K49F,WRM0207HPC-2K49FT2,https://app.lcm-client.com/belimo/matching/40602-02491/ef351458b324e0850a46407492a30f58,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02491
373,374,Resistors,TT Electronics,40602-02703,WRM0207HPC-270KF,WRM0207HPC-270KFT2,https://app.lcm-client.com/belimo/matching/40602-02703/ef351458b324e0850a46407492a35ee4,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02703
374,375,Resistors,TT Electronics,40602-03000,WRM0207HPC-300RF,WRM0207HPC-300RFT2,https://app.lcm-client.com/belimo/matching/40602-03000/ef351458b324e0850a46407492a39ce1,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-03000
375,376,Resistors,TT Electronics,40602-03303,WRM0207HPC-330KF,WRM0207HPC-330KFT2,https://app.lcm-client.com/belimo/matching/40602-03303/ef351458b324e0850a46407492a3cdcf,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-03303
376,377,Resistors,TT Electronics,40602-04700,WRM0207HPC-470RF,WRM0207HPC-470RFT2,https://app.lcm-client.com/belimo/matching/40602-04700/ef351458b324e0850a46407492a51cfd,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04700
377,378,Resistors,TT Electronics,40602-04701,WRM0207HPC-4K7F,WRM0207HPC-4K7FT2,https://app.lcm-client.com/belimo/matching/40602-04701/ef351458b324e0850a46407492a54e73,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04701
378,379,Resistors,TT Electronics,40602-04702,WRM0207HPC-47KF,WRM0207HPC-47KFT2,https://app.lcm-client.com/belimo/matching/40602-04702/ef351458b324e0850a46407492a58a5c,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04702
379,380,Resistors,TT Electronics,40602-04703,WRM0207HPC-470KF,WRM0207HPC-470KFT2,https://app.lcm-client.com/belimo/matching/40602-04703/ef351458b324e0850a46407492a5b923,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04703
380,381,Resistors,TT Electronics,40602-05100,WRM0207HPC-510RF,WRM0207HPC-510RFT2,https://app.lcm-client.com/belimo/matching/40602-05100/ef351458b324e0850a46407492a6084d,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05100
381,382,Resistors,TT Electronics,40602-05603,WRM0207HPC-560KF,WRM0207HPC-560KFT2,https://app.lcm-client.com/belimo/matching/40602-05603/ef351458b324e0850a46407492a64c72,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05603
382,383,Resistors,TT Electronics,40602-06209,WRM0207HPC-62RF,WRM0207HPC-62RFT2,https://app.lcm-client.com/belimo/matching/40602-06209/ef351458b324e0850a46407492a68b65,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-06209
383,384,Resistors,TT Electronics,40602-07502,WRM0207HPC-75KF,WRM0207HPC-75KFT2,https://app.lcm-client.com/belimo/matching/40602-07502/ef351458b324e0850a46407492a6d6ab,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-07502
384,385,Resistors,TT Electronics,40602-08063,WRM0207HPC-806KF,WRM0207HPC-806KFT2,https://app.lcm-client.com/belimo/matching/40602-08063/ef351458b324e0850a46407492a71c92,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08063
385,386,Resistors,TT Electronics,40602-08202,WRM0207HPC-82KF,WRM0207HPC-82KFT2,https://app.lcm-client.com/belimo/matching/40602-08202/ef351458b324e0850a46407492a75ccf,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08202
386,387,Resistors,TT Electronics,40602-09100,WRM0207HPC-910RF,WRM0207HPC-910RFT2,https://app.lcm-client.com/belimo/matching/40602-09100/ef351458b324e0850a46407492a79fec,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-09100
387,388,Resistors,TT Electronics,40615-01002,PCF1206-R-10KB,PCF1206R-10KBT1,https://app.lcm-client.com/belimo/matching/40615-01002/ef351458b324e0850a46407492b6a626,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-01002
388,389,Resistors,TT Electronics,40615-01022,PCF1206-R-10K2B,PCF1206R-10K2BT1,https://app.lcm-client.com/belimo/matching/40615-01022/ef351458b324e0850a46407492b6e25d,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-01022
389,390,Resistors,TT Electronics,40615-01213,PCF1206-R-121KB,PCF1206R-121KBT1,https://app.lcm-client.com/belimo/matching/40615-01213/ef351458b324e0850a46407492b72657,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-01213
390,391,Resistors,TT Electronics,40615-01822,PCF1206-R-18K2B,PCF1206R-18K2BT1,https://app.lcm-client.com/belimo/matching/40615-01822/ef351458b324e0850a46407492b751d0,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-01822
391,392,Resistors,TT Electronics,40617-01002,WRM0204C10KFI,WRM0204C-10KFI,https://app.lcm-client.com/belimo/matching/40617-01002/ef351458b324e0850a46407492b965cd,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01002
392,393,Resistors,TT Electronics,40617-01003,WRM0204C100KFI,WRM0204C-100KFI,https://app.lcm-client.com/belimo/matching/40617-01003/ef351458b324e0850a46407492b9d08e,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01003
393,394,Resistors,TT Electronics,40617-01108,WRM0204C1R1FI,WRM0204C-1R1FI,https://app.lcm-client.com/belimo/matching/40617-01108/ef351458b324e0850a46407492bb284b,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01108
394,395,Resistors,TT Electronics,40617-01201,WRM0204C1K2FI,WRM0204C-1K2FI,https://app.lcm-client.com/belimo/matching/40617-01201/ef351458b324e0850a46407492bb9190,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01201
395,396,Resistors,TT Electronics,40617-01202,WRM0204C12KFI,WRM0204C-12KFI,https://app.lcm-client.com/belimo/matching/40617-01202/ef351458b324e0850a46407492bbe280,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01202
396,397,Resistors,TT Electronics,40617-02002,WRM0204C20KFI,WRM0204C-20KFI,https://app.lcm-client.com/belimo/matching/40617-02002/ef351458b324e0850a46407492beb216,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02002
397,398,Resistors,TT Electronics,40617-02201,WRM0204C2K2FI,WRM0204C-2K2FI,https://app.lcm-client.com/belimo/matching/40617-02201/ef351458b324e0850a46407492bf96d3,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02201
398,399,Resistors,TT Electronics,40617-02202,WRM0204C22KFI,WRM0204C-22KFI,https://app.lcm-client.com/belimo/matching/40617-02202/ef351458b324e0850a46407492c0070f,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02202
399,400,Resistors,TT Electronics,40617-02402,WRM0204C24KFI,WRM0204C-24KFI,https://app.lcm-client.com/belimo/matching/40617-02402/ef351458b324e0850a46407492c077bb,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02402
400,401,Resistors,TT Electronics,41746-02007,LR2512-R20F,LR2512-R20FT1,https://app.lcm-client.com/belimo/matching/41746-02007/ef351458b324e0850a46407492cb1266,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41746-02007
401,402,Resistors,TT Electronics,41801-00057,LRMAP2512-R005F,LRMAP2512-R005FT4,https://app.lcm-client.com/belimo/matching/41801-00057/ef351458b324e0850a46407492cc617c,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/41801-00057
402,403,Resistors,TT Electronics,41808-01008,CHP1/8501R00J,CHP1/8501R00JLF,https://app.lcm-client.com/belimo/matching/41808-01008/ef351458b324e0850a46407492cc74b7,ok,STD,Yes,y,Obsolete,https://app.lcm-client.com/belimo/part/41808-01008
403,404,Resistors,Panasonic,41911-03001,ERJ2RKF3001,ERJ2RKF3001X,https://app.lcm-client.com/belimo/matching/41911-03001/01c0aaf7f54e36ff3a021a81ca303251,ok,Automotive,Exption,n,,
404,405,Resistors,Panasonic,41911-03301,ERJ2RKF3301,ERJ2RKF3301X,https://app.lcm-client.com/belimo/matching/41911-03301/01c0aaf7f54e36ff3a021a81ca30648f,ok,Automotive,Exption,n,,
405,406,Resistors,Panasonic,41911-05600,ERJ2RKF5600,ERJ2RKF5600X,https://app.lcm-client.com/belimo/matching/41911-05600/215374c1de05d3324b68f967dc5023c8,ok,Automotive,Exption,n,,
406,407,Resistors,Panasonic,41911-07502,ERJ2RKF7502,ERJ2RKF7502X,https://app.lcm-client.com/belimo/matching/41911-07502/215374c1de05d3324b68f967dc50b5a8,ok,Automotive,Exption,n,,
407,408,Resistors,Panasonic,41911-08203,ERJ2RKF8203,ERJ2RKF8203X,https://app.lcm-client.com/belimo/matching/41911-08203/215374c1de05d3324b68f967dc50e5fb,ok,Automotive,Exption,n,,
408,409,Resistors,Panasonic,41911-01103,ERJ2RKF1103,ERJ2RKF1103X,https://app.lcm-client.com/belimo/matching/41911-01103/46de94ed90f9f5ccd2b17e508cfa275c,ok,Automotive,Exption,n,,
409,410,Resistors,Panasonic,41911-01200,ERJ2RKF1200,ERJ2RKF1200X,https://app.lcm-client.com/belimo/matching/41911-01200/46de94ed90f9f5ccd2b17e508cfa4588,ok,Automotive,Exption,n,,
410,411,Resistors,Panasonic,41911-01302,ERJ2RKF1302,ERJ2RKF1302X,https://app.lcm-client.com/belimo/matching/41911-01302/46de94ed90f9f5ccd2b17e508cfa5fef,ok,Automotive,Exption,n,,
411,412,Resistors,Panasonic,41911-01303,ERJ2RKF1303,ERJ2RKF1303X,https://app.lcm-client.com/belimo/matching/41911-01303/46de94ed90f9f5ccd2b17e508cfa88df,ok,Automotive,Exption,n,,
412,413,Resistors,Panasonic,40613-01001,ERA6AEB102,ERA6AEB102V,https://app.lcm-client.com/belimo/matching/40613-01001/a57dd45b8b8bfbbc6b72118464d72071,ok,Automotive,Exption,n,,
413,414,Resistors,Panasonic,40613-01002,ERA6AEB103,ERA6AEB103V,https://app.lcm-client.com/belimo/matching/40613-01002/a57dd45b8b8bfbbc6b72118464d74c0c,ok,Automotive,Exption,n,,
414,415,Resistors,Panasonic,40613-01152,ERA6AEB1153,ERA6AEB1153V,https://app.lcm-client.com/belimo/matching/40613-01152/a57dd45b8b8bfbbc6b72118464d773c4,ok,Automotive,Exption,n,,
415,416,Resistors,Panasonic,40613-01271,ERA6AEB1271,ERA6AEB1271V,https://app.lcm-client.com/belimo/matching/40613-01271/a57dd45b8b8bfbbc6b72118464d7a262,ok,Automotive,Exption,n,,
416,417,Resistors,Panasonic,40613-01502,ERA6AEB1502,ERA6AEB1502V,https://app.lcm-client.com/belimo/matching/40613-01502/a57dd45b8b8bfbbc6b72118464d7ef05,ok,Automotive,Exption,n,,
417,418,Resistors,Panasonic,40613-01503,ERA6AEB1503,ERA6AEB1503V,https://app.lcm-client.com/belimo/matching/40613-01503/a57dd45b8b8bfbbc6b72118464d802b3,ok,Automotive,Exption,n,,
418,419,Resistors,Panasonic,40613-01602,ERA6AEB163,ERA6AEB163V,https://app.lcm-client.com/belimo/matching/40613-01602/a57dd45b8b8bfbbc6b72118464d8202c,ok,Automotive,Exption,n,,
419,420,Resistors,Panasonic,40613-02001,ERA6AEB2001,ERA6AEB2001V,https://app.lcm-client.com/belimo/matching/40613-02001/a57dd45b8b8bfbbc6b72118464d85572,ok,Automotive,Exption,n,,
420,421,Resistors,Panasonic,40613-02002,ERA6AEB2002,ERA6AEB2002V,https://app.lcm-client.com/belimo/matching/40613-02002/a57dd45b8b8bfbbc6b72118464d8777d,ok,Automotive,Exption,n,,
421,422,Resistors,Panasonic,40613-02432,ERA6AEB2431,ERA6AEB2431V,https://app.lcm-client.com/belimo/matching/40613-02432/a57dd45b8b8bfbbc6b72118464d8af94,ok,Automotive,Exption,n,,
422,423,Resistors,Panasonic,40613-03321,ERA6AEB3321,ERA6AEB3321V,https://app.lcm-client.com/belimo/matching/40613-03321/a57dd45b8b8bfbbc6b72118464d8e08b,ok,Automotive,Exption,n,,
423,424,Resistors,Panasonic,40613-03601,ERA6AEB362,ERA6AEB362V,https://app.lcm-client.com/belimo/matching/40613-03601/a57dd45b8b8bfbbc6b72118464d8fefd,ok,Automotive,Exption,n,,
424,425,Resistors,Panasonic,40613-04022,ERA6AEB4022,ERA6AEB4022V,https://app.lcm-client.com/belimo/matching/40613-04022/a57dd45b8b8bfbbc6b72118464da2fbb,ok,Automotive,Exption,n,,
425,426,Resistors,Panasonic,40613-06802,ERA6AEB683,ERA6AEB683V,https://app.lcm-client.com/belimo/matching/40613-06802/a57dd45b8b8bfbbc6b72118464da4c84,ok,Automotive,Exption,n,,
426,427,Resistors,Panasonic,40613-07871,ERA6AEB7871,ERA6AEB7871V,https://app.lcm-client.com/belimo/matching/40613-07871/a57dd45b8b8bfbbc6b72118464da5af6,ok,Automotive,Exption,n,,
427,428,Resistors,Panasonic,40613-09762,ERA6AEB9762,ERA6AEB9762V,https://app.lcm-client.com/belimo/matching/40613-09762/a57dd45b8b8bfbbc6b72118464da891e,ok,Automotive,Exption,n,,
428,429,Resistors,Panasonic,41911-01003,ERJ2RKF1003,ERJ2RKF1003X,https://app.lcm-client.com/belimo/matching/41911-01003/a57dd45b8b8bfbbc6b72118464f07eb4,ok,Automotive,Exption,n,,
429,430,Resistors,Panasonic,41911-01102,ERJ2RKF1102,ERJ2RKF1102X,https://app.lcm-client.com/belimo/matching/41911-01102/a57dd45b8b8bfbbc6b72118464f0d155,ok,Automotive,Exption,n,,
430,431,Resistors,Panasonic,41911-01202,ERJ2RKF1202,ERJ2RKF1202X,https://app.lcm-client.com/belimo/matching/41911-01202/a57dd45b8b8bfbbc6b72118464f1003f,ok,Automotive,Exption,n,,
431,432,Resistors,Panasonic,41911-01203,ERJ2RKF1203,ERJ2RKF1203X,https://app.lcm-client.com/belimo/matching/41911-01203/a57dd45b8b8bfbbc6b72118464f11b46,ok,Automotive,Exption,n,,
432,433,Resistors,Panasonic,41911-01402,ERJ2RKF1402,ERJ2RKF1402X,https://app.lcm-client.com/belimo/matching/41911-01402/a57dd45b8b8bfbbc6b72118464f1429e,ok,Automotive,Exption,n,,
433,434,Resistors,Panasonic,41911-01502,ERJ2RKF1502,ERJ2RKF1502X,https://app.lcm-client.com/belimo/matching/41911-01502/a57dd45b8b8bfbbc6b72118464f179f5,ok,Automotive,Exption,n,,
434,435,Resistors,Panasonic,41911-01503,ERJ2RKF1503,ERJ2RKF1503X,https://app.lcm-client.com/belimo/matching/41911-01503/a57dd45b8b8bfbbc6b72118464f1b159,ok,Automotive,Exption,n,,
435,436,Resistors,Panasonic,41911-01802,ERJ2RKF1802,ERJ2RKF1802X,https://app.lcm-client.com/belimo/matching/41911-01802/a57dd45b8b8bfbbc6b72118464f1e1f1,ok,Automotive,Exption,n,,
436,437,Resistors,Panasonic,41911-01803,ERJ2RKF1803,ERJ2RKF1803X,https://app.lcm-client.com/belimo/matching/41911-01803/a57dd45b8b8bfbbc6b72118464f210cd,ok,Automotive,Exption,n,,
437,438,Resistors,Panasonic,41911-02003,ERJ2RKF2003,ERJ2RKF2003X,https://app.lcm-client.com/belimo/matching/41911-02003/a57dd45b8b8bfbbc6b72118464f2425a,ok,Automotive,Exption,n,,
438,439,Resistors,Panasonic,41911-02200,ERJ2RKF2200,ERJ2RKF2200X,https://app.lcm-client.com/belimo/matching/41911-02200/a57dd45b8b8bfbbc6b72118464f2631d,ok,Automotive,Exption,n,,
439,440,Resistors,Panasonic,41911-02201,ERJ2RKF2201,ERJ2RKF2201X,https://app.lcm-client.com/belimo/matching/41911-02201/a57dd45b8b8bfbbc6b72118464f28fbc,ok,Automotive,Exption,n,,
440,441,Resistors,Panasonic,41911-02202,ERJ2RKF2202,ERJ2RKF2202X,https://app.lcm-client.com/belimo/matching/41911-02202/a57dd45b8b8bfbbc6b72118464f2ad6b,ok,Automotive,Exption,n,,
441,442,Resistors,Panasonic,41911-02203,ERJ2RKF2203,ERJ2RKF2203X,https://app.lcm-client.com/belimo/matching/41911-02203/a57dd45b8b8bfbbc6b72118464f2d9da,ok,Automotive,Exption,n,,
442,443,Resistors,Panasonic,47690-00001,ERJ-6ENF1003V,ERJ6ENF1003V,https://app.lcm-client.com/belimo/matching/47690-00001/a57dd45b8b8bfbbc6b72118464fe67b5,ok,Automotive,Exption,n,,
443,444,Resistors,Panasonic,47692-00001,ERJ-6ENF1783V,ERJ6ENF1783V,https://app.lcm-client.com/belimo/matching/47692-00001/a57dd45b8b8bfbbc6b72118464fe776d,ok,Automotive,Exption,n,,
444,445,Resistors,Panasonic,47694-00001,ERJ-6ENF4753V,ERJ6ENF4753V,https://app.lcm-client.com/belimo/matching/47694-00001/a57dd45b8b8bfbbc6b72118464fe8343,ok,Automotive,Exption,n,,
445,446,Resistors,Panasonic,47695-00001,ERJ-6ENF6493V,ERJ6ENF6493V,https://app.lcm-client.com/belimo/matching/47695-00001/a57dd45b8b8bfbbc6b72118464fe92ca,ok,Automotive,Exption,n,,
446,447,Resistors,Panasonic,47700-00001,ERJ-6ENF1000V,ERJ6ENF1000V,https://app.lcm-client.com/belimo/matching/47700-00001/a57dd45b8b8bfbbc6b72118464fee6c1,ok,Automotive,Exption,n,,
447,448,Resistors,Panasonic,47703-00001,ERJ-6ENF9090V,ERJ6ENF9090V,https://app.lcm-client.com/belimo/matching/47703-00001/a57dd45b8b8bfbbc6b72118464ff302b,ok,Automotive,Exption,n,,
448,449,Resistors,Panasonic,47704-00001,ERJ-8ENF1001V,ERJ8ENF1001V,https://app.lcm-client.com/belimo/matching/47704-00001/a57dd45b8b8bfbbc6b72118464ff3d4c,ok,Automotive,Exption,y,NRND,
449,450,Resistors,Panasonic,47716-00001,ERJ-8ENF62R0V,ERJ8ENF62R0V,https://app.lcm-client.com/belimo/matching/47716-00001/a57dd45b8b8bfbbc6b72118464ffbddb,ok,Automotive,Exption,y,NRND,
450,451,Resistors,Panasonic,47720-00001,ERJ-8ENF4990V,ERJ8ENF4990V,https://app.lcm-client.com/belimo/matching/47720-00001/a57dd45b8b8bfbbc6b72118464ffd9f2,ok,Automotive,Exption,y,NRND,
451,452,Resistors,Panasonic,41911-02400,ERJ2RKF2400,ERJ2RKF2400x,https://app.lcm-client.com/belimo/matching/41911-02400/c8cb570d5127ae96aaae8eee6653b5ee,ok,Automotive,Exption,n,,
452,453,Resistors,Panasonic,41911-02402,ERJ2RKF2402,ERJ2RKF2402X,https://app.lcm-client.com/belimo/matching/41911-02402/c8cb570d5127ae96aaae8eee6653e56f,ok,Automotive,Exption,n,,
453,454,Resistors,Panasonic,41911-02701,ERJ2RKF2701,ERJ2RKF2701X,https://app.lcm-client.com/belimo/matching/41911-02701/c8cb570d5127ae96aaae8eee66541a81,ok,Automotive,Exption,n,,
454,455,Resistors,Panasonic,41911-02702,ERJ2RKF2702,ERJ2RKF2702X,https://app.lcm-client.com/belimo/matching/41911-02702/c8cb570d5127ae96aaae8eee66543ebe,ok,Automotive,Exption,n,,
455,456,Resistors,Panasonic,41911-03002,ERJ2RKF3002,ERJ2RKF3002X,https://app.lcm-client.com/belimo/matching/41911-03002/c8cb570d5127ae96aaae8eee6654c2de,ok,Automotive,Exption,n,,
456,457,Resistors,Panasonic,41911-03003,ERJ2RKF3003,ERJ2RKF3003X,https://app.lcm-client.com/belimo/matching/41911-03003/c8cb570d5127ae96aaae8eee6655059a,ok,Automotive,Exption,n,,
457,458,Resistors,Panasonic,41911-03300,ERJ2RKF3300,ERJ2RKF3300X,https://app.lcm-client.com/belimo/matching/41911-03300/c8cb570d5127ae96aaae8eee66553a8c,ok,Automotive,Exption,n,,
458,459,Resistors,Panasonic,41911-03302,ERJ2RKF3302,ERJ2RKF3302X,https://app.lcm-client.com/belimo/matching/41911-03302/c8cb570d5127ae96aaae8eee66555ae8,ok,Automotive,Exption,n,,
459,460,Resistors,Panasonic,41911-03303,ERJ2RKF3303,ERJ2RKF3303X,https://app.lcm-client.com/belimo/matching/41911-03303/c8cb570d5127ae96aaae8eee665598e9,ok,Automotive,Exption,n,,
460,461,Resistors,Panasonic,41911-03900,ERJ2RKF3900,ERJ2RKF3900X,https://app.lcm-client.com/belimo/matching/41911-03900/c8cb570d5127ae96aaae8eee6655be39,ok,Automotive,Exption,n,,
461,462,Resistors,Panasonic,41911-04302,ERJ2RKF4302,ERJ2RKF4302X,https://app.lcm-client.com/belimo/matching/41911-04302/c8cb570d5127ae96aaae8eee66560497,ok,Automotive,Exption,n,,
462,463,Resistors,Panasonic,41911-04701,ERJ2RKF4703,ERJ2RKF4703X,https://app.lcm-client.com/belimo/matching/41911-04701/c8cb570d5127ae96aaae8eee66567b38,ok,Automotive,Exption,n,,
463,464,Resistors,Panasonic,41911-08872,ERJ2RKF8872,ERJ2RKF8872X,https://app.lcm-client.com/belimo/matching/41911-08872/c8cb570d5127ae96aaae8eee6658f0ba,ok,Automotive,Exption,n,,
464,465,Resistors,Panasonic,42175-03602,ERJ2RKF3602,ERJ2RKF3602X,https://app.lcm-client.com/belimo/matching/42175-03602/c8cb570d5127ae96aaae8eee6659b0b1,ok,Automotive,Exption,n,,
465,466,Resistors,Panasonic,42175-08201,ERJ2RKF8201,ERJ2RKF8201X,https://app.lcm-client.com/belimo/matching/42175-08201/c8cb570d5127ae96aaae8eee6659c7f1,ok,Automotive,Exption,n,,
466,467,Resistors,Panasonic,40412-02701,ERJ-U03D2701V,ERJU03D2701V,https://app.lcm-client.com/belimo/matching/40412-02701/ef351458b324e0850a464074929e2bee,ok,Automotive,Exption,n,,
467,468,Resistors,Panasonic,40412-02701,ERJ-U3RD2701V,ERJU3RD2701V,https://app.lcm-client.com/belimo/matching/40412-02701/ef351458b324e0850a464074929e3613,ok,Automotive,Exption,n,,
468,469,Resistors,Panasonic,41861-01003,ERA2AEB104,ERA2AEB104X,https://app.lcm-client.com/belimo/matching/41861-01003/ef351458b324e0850a46407492ccb156,ok,Automotive,Exption,n,,
469,470,Resistors,Panasonic,41861-02001,ERA2AEB202,ERA2AEB202X,https://app.lcm-client.com/belimo/matching/41861-02001/ef351458b324e0850a46407492ccefa4,ok,Automotive,Exption,n,,
470,471,Resistors,Panasonic,41861-02702,ERA2AEB273,ERA2AEB273X,https://app.lcm-client.com/belimo/matching/41861-02702/ef351458b324e0850a46407492cd4c96,ok,Automotive,Exption,n,,
471,472,Resistors,Panasonic,41861-04702,ERJ2RKF4702,ERJ2RKF4702X,https://app.lcm-client.com/belimo/matching/41861-04702/ef351458b324e0850a46407492cd780d,ok,Automotive,Exption,n,,
472,473,Resistors,Panasonic,41861-06802,ERA2AEB683,ERA2AEB683X,https://app.lcm-client.com/belimo/matching/41861-06802/ef351458b324e0850a46407492cd95c0,ok,Automotive,Exption,n,,
473,474,Resistors,Panasonic,41911-01001,ERJ2RKF1001,ERJ2RKF1001X,https://app.lcm-client.com/belimo/matching/41911-01001/ef351458b324e0850a46407492ced498,ok,Automotive,Exption,n,,
474,475,Resistors,Panasonic,41911-05102,ERJ2RKF5102,ERJ2RKF5102X,https://app.lcm-client.com/belimo/matching/41911-05102/ef351458b324e0850a46407492d19988,ok,Automotive,Exption,n,,
475,476,Resistors,Panasonic,41911-05103,ERJ2RKF5103,ERJ2RKF5103X,https://app.lcm-client.com/belimo/matching/41911-05103/ef351458b324e0850a46407492d1cc89,ok,Automotive,Exption,n,,
476,477,Resistors,Panasonic,41911-05603,ERJ2RKF5603,ERJ2RKF5603X,https://app.lcm-client.com/belimo/matching/41911-05603/ef351458b324e0850a46407492d223fb,ok,Automotive,Exption,n,,
477,478,Resistors,Panasonic,41911-06201,ERJ2RKF6201,ERJ2RKF6201X,https://app.lcm-client.com/belimo/matching/41911-06201/ef351458b324e0850a46407492d2c3d1,ok,Automotive,Exption,n,,
478,479,Resistors,Panasonic,41911-06202,ERJ2RKF6202,ERJ2RKF6202X,https://app.lcm-client.com/belimo/matching/41911-06202/ef351458b324e0850a46407492d2fe25,ok,Automotive,Exption,n,,
479,480,Resistors,Panasonic,41911-06802,ERJ2RKF6802,ERJ2RKF6802X,https://app.lcm-client.com/belimo/matching/41911-06802/ef351458b324e0850a46407492d330e8,ok,Automotive,Exption,n,,
480,481,Resistors,Panasonic,41911-06803,ERJ2RKF6803,ERJ2RKF6803X,https://app.lcm-client.com/belimo/matching/41911-06803/ef351458b324e0850a46407492d3643a,ok,Automotive,Exption,n,,
481,482,Resistors,Panasonic,41911-06809,ERJ2RKF68R0,ERJ2RKF68R0X,https://app.lcm-client.com/belimo/matching/41911-06809/ef351458b324e0850a46407492d3ab42,ok,Automotive,Exption,n,,
482,483,Resistors,Panasonic,47673-00001,ERJ-6ENF1151V,ERJ6ENF1151V,https://app.lcm-client.com/belimo/matching/47673-00001/ef351458b324e0850a46407492de2ab2,ok,Automotive,Exption,n,,
483,484,Resistors,Panasonic,47678-00001,ERJ-6ENF4301V,ERJ6ENF4301V,https://app.lcm-client.com/belimo/matching/47678-00001/ef351458b324e0850a46407492de700b,ok,Automotive,Exption,n,,
484,485,Resistors,Panasonic,47682-00001,ERJ-6ENF1912V,ERJ6ENF1912V,https://app.lcm-client.com/belimo/matching/47682-00001/ef351458b324e0850a46407492decfd2,ok,Automotive,Exption,n,,
485,486,Resistors,TDK,40138,B57620C5102J,B57620C5102J062,https://app.lcm-client.com/belimo/matching/40138/ef351458b324e0850a464074929dd12c,ok,STD,Yes,y,Requires Update,https://app.lcm-client.com/belimo/part/40138

@ -0,0 +1,487 @@
,Pos,Category,Manufacturer,CPN,MPN,MPN_Matched,Link,Status,State,ROHS,report_belimo,Comment,CPN_Link
0,1,Resistors,Vishay,41749-01509,CMB02070X1509,CMB02070X1509JB200 ,https://app.lcm-client.com/belimo/matching/41749-01509/46de94ed90f9f5ccd2b17e508cf7765a,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/41749-01509
1,2,Resistors,Vishay,40613-01001,MCU08050D1001B,MCU08050D1001BP500,https://app.lcm-client.com/belimo/matching/40613-01001/a57dd45b8b8bfbbc6b72118464d732a4,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01001
2,3,Resistors,Vishay,40613-01002,MCU08050D1002B,MCU08050D1002BP500,https://app.lcm-client.com/belimo/matching/40613-01002/a57dd45b8b8bfbbc6b72118464d75801,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01002
3,4,Resistors,Vishay,40613-01152,MCU08050D1152B,MCU08050D1152BP500,https://app.lcm-client.com/belimo/matching/40613-01152/a57dd45b8b8bfbbc6b72118464d7859d,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01152
4,5,Resistors,Vishay,40613-01271,MCU08050D1271B,MCU08050D1271BP500,https://app.lcm-client.com/belimo/matching/40613-01271/a57dd45b8b8bfbbc6b72118464d7c5d9,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01271
5,6,Resistors,Vishay,40613-01300,MCU08050D1300B,MCU08050D1300BP500,https://app.lcm-client.com/belimo/matching/40613-01300/a57dd45b8b8bfbbc6b72118464d7dde1,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01300
6,7,Resistors,Vishay,40613-01502,MCU08050D1502B,MCU08050D1502BP500,https://app.lcm-client.com/belimo/matching/40613-01502/a57dd45b8b8bfbbc6b72118464d7f9ab,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01502
7,8,Resistors,Vishay,40613-01503,MCU08050D1503B,MCU08050D1503BP500,https://app.lcm-client.com/belimo/matching/40613-01503/a57dd45b8b8bfbbc6b72118464d80785,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01503
8,9,Resistors,Vishay,40613-01602,MCU08050D1602B,MCU08050D1602BP500,https://app.lcm-client.com/belimo/matching/40613-01602/a57dd45b8b8bfbbc6b72118464d82cc5,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01602
9,10,Resistors,Vishay,40613-02001,MCU08050D2001B,MCU08050D2001BP500,https://app.lcm-client.com/belimo/matching/40613-02001/a57dd45b8b8bfbbc6b72118464d863d6,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-02001
10,11,Resistors,Vishay,40617-01208,SMM02040C1208F,SMM02040C1208FB300,https://app.lcm-client.com/belimo/matching/40617-01208/a57dd45b8b8bfbbc6b72118464e27bef,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01208
11,12,Resistors,Vishay,40617-01208,MMA02040C1211F,MMA02040C1211FB300,https://app.lcm-client.com/belimo/matching/40617-01211/a57dd45b8b8bfbbc6b72118464e2d494,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01208
12,13,Resistors,Vishay, 40617-01211,SMM02040C1211F,SMM02040C1211FB300,https://app.lcm-client.com/belimo/matching/40617-01211/a57dd45b8b8bfbbc6b72118464e2d5e6,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/ 40617-01211
13,14,Resistors,Vishay,40617-01211,MMA02040C1308F,MMA02040C1308FB300,https://app.lcm-client.com/belimo/matching/40617-01308/a57dd45b8b8bfbbc6b72118464e330ad,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01211
14,15,Resistors,Vishay,40617-01308,SMM02040C1308F,SMM02040C1308FB300,https://app.lcm-client.com/belimo/matching/40617-01308/a57dd45b8b8bfbbc6b72118464e3356a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01308
15,16,Resistors,Vishay,40617-01308,MMA02040C1508F,MMA02040C1508FB300,https://app.lcm-client.com/belimo/matching/40617-01508/a57dd45b8b8bfbbc6b72118464e39977,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01308
16,17,Resistors,Vishay,40617-01508,SMM02040C1508F,SMM02040C1508FB300,https://app.lcm-client.com/belimo/matching/40617-01508/a57dd45b8b8bfbbc6b72118464e3a808,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01508
17,18,Resistors,Vishay,40617-01508,MMA02040C1509F,MMA02040C1509FB300,https://app.lcm-client.com/belimo/matching/40617-01509/a57dd45b8b8bfbbc6b72118464e40ddc,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01508
18,19,Resistors,Vishay,40617-01509,SMM02040C1509F,SMM02040C1509FB300,https://app.lcm-client.com/belimo/matching/40617-01509/a57dd45b8b8bfbbc6b72118464e41200,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01509
19,20,Resistors,Vishay,40617-01509,MMA02040C1800F,MMA02040C1800FB300,https://app.lcm-client.com/belimo/matching/40617-01800/a57dd45b8b8bfbbc6b72118464e48179,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01509
20,21,Resistors,Vishay,40617-03901,SMM02040C3901F,SMM02040C3901FB300,https://app.lcm-client.com/belimo/matching/40617-03901/a57dd45b8b8bfbbc6b72118464e91b53,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03901
21,22,Resistors,Vishay,40617-04301,MMA02040C4301F,MMA02040C4301FB300,https://app.lcm-client.com/belimo/matching/40617-04301/a57dd45b8b8bfbbc6b72118464e98b90,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04301
22,23,Resistors,Vishay,40617-04301,SMM02040C4301F,SMM02040C4301FB300,https://app.lcm-client.com/belimo/matching/40617-04301/a57dd45b8b8bfbbc6b72118464e9917e,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04301
23,24,Resistors,Vishay,40617-04700,MMA02040C4700F,MMA02040C4700FB300,https://app.lcm-client.com/belimo/matching/40617-04700/a57dd45b8b8bfbbc6b72118464ea276d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04700
24,25,Resistors,Vishay,40617-04700,SMM02040C4700F,SMM02040C4700FB300,https://app.lcm-client.com/belimo/matching/40617-04700/a57dd45b8b8bfbbc6b72118464ea2ceb,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04700
25,26,Resistors,Vishay,47180,MBB02070C1052F,MBB02070C1052FRP00,https://app.lcm-client.com/belimo/matching/47180/a57dd45b8b8bfbbc6b72118464f9e611,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47180
26,27,Resistors,Vishay,47181,MBB02070C7322F,MBB02070C7322FRP00,https://app.lcm-client.com/belimo/matching/47181/a57dd45b8b8bfbbc6b72118464fa0d74,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47181
27,28,Resistors,Vishay,47182,MBB02070C8062F,MBB02070C8062FR100 ,https://app.lcm-client.com/belimo/matching/47182/a57dd45b8b8bfbbc6b72118464fa284b,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47182
28,29,Resistors,Vishay,47183,MBB02070C2873F,MBB02070C2873FRP00,https://app.lcm-client.com/belimo/matching/47183/a57dd45b8b8bfbbc6b72118464fa487f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47183
29,30,Resistors,Vishay,47184,MBB02070C4304F,MBB02070C4304FRP00,https://app.lcm-client.com/belimo/matching/47184/a57dd45b8b8bfbbc6b72118464fa7121,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47184
30,31,Resistors,Vishay,47340,MBB02070C4531F,MBB02070C4531FRP00,https://app.lcm-client.com/belimo/matching/47340/a57dd45b8b8bfbbc6b72118464fbae15,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47340
31,32,Resistors,Vishay,47341,MBB02070C5601F,MBB02070C5601FRP00,https://app.lcm-client.com/belimo/matching/47341/a57dd45b8b8bfbbc6b72118464fbbb63,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47341
32,33,Resistors,Vishay,47342,MBB02070C4423F,MBB02070C4423FRP00,https://app.lcm-client.com/belimo/matching/47342/a57dd45b8b8bfbbc6b72118464fbd854,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47342
33,34,Resistors,Vishay,47343,MBB02070C2671F,MBB02070C2671FRP00,https://app.lcm-client.com/belimo/matching/47343/a57dd45b8b8bfbbc6b72118464fbf0df,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47343
34,35,Resistors,Vishay,47344,MBB02070C6202F,MBB02070C6202FRP00,https://app.lcm-client.com/belimo/matching/47344/a57dd45b8b8bfbbc6b72118464fc0ace,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47344
35,36,Resistors,Vishay,47355-01104,MBB02070C1104F,MBB02070C1104FRP00,https://app.lcm-client.com/belimo/matching/47355-01104/a57dd45b8b8bfbbc6b72118464fc27b6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01104
36,37,Resistors,Vishay,47355-01104,MRS25000C1104F,MRS25000C1104FRP00,https://app.lcm-client.com/belimo/matching/47355-01104/a57dd45b8b8bfbbc6b72118464fc3277,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01104
37,38,Resistors,Vishay,47355-01153,MBB02070C1153F,MBB02070C1153FRP00,https://app.lcm-client.com/belimo/matching/47355-01153/a57dd45b8b8bfbbc6b72118464fc55bf,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01153
38,39,Resistors,Vishay,47355-01153,MRS25000C1153F,MRS25000C1153FRP00 ,https://app.lcm-client.com/belimo/matching/47355-01153/a57dd45b8b8bfbbc6b72118464fc6578,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01153
39,40,Resistors,Vishay,47355-01208,MBB02070C1208F,MBB02070C1208FRP00,https://app.lcm-client.com/belimo/matching/47355-01208/a57dd45b8b8bfbbc6b72118464fc73ef,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01208
40,41,Resistors,Vishay,40617-04992,SMM02040C4992F,SMM02040C4992FB300,https://app.lcm-client.com/belimo/matching/40617-04992/c8cb570d5127ae96aaae8eee6648e367,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04992
41,42,Resistors,Vishay,40617-05109,MMA02040C5109F,MMA02040C5109FB300,https://app.lcm-client.com/belimo/matching/40617-05109/c8cb570d5127ae96aaae8eee66495230,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-05109
42,43,Resistors,Vishay,40617-05109,SMM02040C5109F,SMM02040C5109FB300,https://app.lcm-client.com/belimo/matching/40617-05109/c8cb570d5127ae96aaae8eee66496136,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-05109
43,44,Resistors,Vishay,40617-05601,MMA02040C5601F,MMA02040C5601FB300,https://app.lcm-client.com/belimo/matching/40617-05601/c8cb570d5127ae96aaae8eee6649c485,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-05601
44,45,Resistors,Vishay,40617-05601,SMM02040C5601F,SMM02040C5601FB300,https://app.lcm-client.com/belimo/matching/40617-05601/c8cb570d5127ae96aaae8eee6649c730,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-05601
45,46,Resistors,Vishay,40617-06208,MMA02040C6208F,MMA02040C6208FB300,https://app.lcm-client.com/belimo/matching/40617-06208/c8cb570d5127ae96aaae8eee664a2dc7,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06208
46,47,Resistors,Vishay,40617-06208,SMM02040C6208F,SMM02040C6208FB300,https://app.lcm-client.com/belimo/matching/40617-06208/c8cb570d5127ae96aaae8eee664a3d62,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06208
47,48,Resistors,Vishay,40617-06800,MMA02040C6800F,MMA02040C6800FB300,https://app.lcm-client.com/belimo/matching/40617-06800/c8cb570d5127ae96aaae8eee664aadfe,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06800
48,49,Resistors,Vishay,40617-06800,SMM02040C6800F,SMM02040C6800FB300,https://app.lcm-client.com/belimo/matching/40617-06800/c8cb570d5127ae96aaae8eee664ab3f4,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06800
49,50,Resistors,Vishay,40617-06801,MMA02040C6801F,MMA02040C6801FB300,https://app.lcm-client.com/belimo/matching/40617-06801/c8cb570d5127ae96aaae8eee664b9f72,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06801
50,51,Resistors,Vishay,40618-07502,CRCW251275K0JN,CRCW251275K0JNEG,https://app.lcm-client.com/belimo/matching/40618-07502/c8cb570d5127ae96aaae8eee664dbba8,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/40618-07502
51,52,Resistors,Vishay,40663-03307,MMB02070C3307J,MMB02070C3307JB200,https://app.lcm-client.com/belimo/matching/40663-03307/c8cb570d5127ae96aaae8eee664ded91,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40663-03307
52,53,Resistors,Vishay,40663-05107,MMB02070C5107J,MMB02070C5107JB200,https://app.lcm-client.com/belimo/matching/40663-05107/c8cb570d5127ae96aaae8eee664e0785,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40663-05107
53,54,Resistors,Vishay,40701-01001,PR01000101001F,PR01000101001FR500,https://app.lcm-client.com/belimo/matching/40701-01001/c8cb570d5127ae96aaae8eee664e1100,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40701-01001
54,55,Resistors,Vishay,40702,MBE04140C8200F,MBE04140C8200FR200,https://app.lcm-client.com/belimo/matching/40702/c8cb570d5127ae96aaae8eee664e2354,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40702
55,56,Resistors,Vishay,40703-04990,PR02000204990F,PR02000204990FR500,https://app.lcm-client.com/belimo/matching/40703-04990/c8cb570d5127ae96aaae8eee664e3084,nok,Automotive,Yes,y,Missing In LCM,https://app.lcm-client.com/belimo/part/40703-04990
56,57,Resistors,Vishay,40710-05600,CPF3560R00FKE,CPF3560R00FKEE6,https://app.lcm-client.com/belimo/matching/40710-05600/c8cb570d5127ae96aaae8eee664e4712,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40710-05600
57,58,Resistors,Vishay,40710-05600,CPF3560R00FLE,CPF3560R00FLE36,https://app.lcm-client.com/belimo/matching/40710-05600/c8cb570d5127ae96aaae8eee664e48da,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40710-05600
58,59,Resistors,Vishay,41917-02208,RCS12062R20JN,RCS12062R20JNEA,https://app.lcm-client.com/belimo/matching/41917-02208/c8cb570d5127ae96aaae8eee66591f88,ok,STD,Exption,n,,https://app.lcm-client.com/belimo/part/41917-02208
59,60,Resistors,Vishay,41917-02209,RCS120622R0JN,RCS120622R0JNEA,https://app.lcm-client.com/belimo/matching/41917-02209/c8cb570d5127ae96aaae8eee66593e8b,ok,STD,Exption,n,,https://app.lcm-client.com/belimo/part/41917-02209
60,61,Resistors,Vishay,47012-02371,MRS25000C2371F,MRS25000C2371FRP00,https://app.lcm-client.com/belimo/matching/47012-02371/c8cb570d5127ae96aaae8eee665ba18c,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-02371
61,62,Resistors,Vishay,47012-02400,MBB02070C2400F,MBB02070C2400FRP00,https://app.lcm-client.com/belimo/matching/47012-02400/c8cb570d5127ae96aaae8eee665bc184,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47012-02400
62,63,Resistors,Vishay,47012-02400,MRS25000C2400F,MRS25000C2400FRP00,https://app.lcm-client.com/belimo/matching/47012-02400/c8cb570d5127ae96aaae8eee665bcc30,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47012-02400
63,64,Resistors,Vishay,47072,MBB02070C3301F,MBB02070C3301FRP00,https://app.lcm-client.com/belimo/matching/47072/c8cb570d5127ae96aaae8eee665e3813,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47072
64,65,Resistors,Vishay,47080,MBB02070C1603F,MBB02070C1603FRP00,https://app.lcm-client.com/belimo/matching/47080/c8cb570d5127ae96aaae8eee665e5210,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47080
65,66,Resistors,Vishay,47100,MBB02070C4122F,MBB02070C4122FRP00,https://app.lcm-client.com/belimo/matching/47100/c8cb570d5127ae96aaae8eee665e71cc,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47100
66,67,Resistors,Vishay,47101,MBB02070C1479F,MBB02070C1479FRP00,https://app.lcm-client.com/belimo/matching/47101/c8cb570d5127ae96aaae8eee665e9aa1,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47101
67,68,Resistors,Vishay,47102,MBB02070C8871F,MBB02070C8871FRP00,https://app.lcm-client.com/belimo/matching/47102/c8cb570d5127ae96aaae8eee665eb013,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47102
68,69,Resistors,Vishay,47103,MBB02070C2491F,MBB02070C2491FRP00,https://app.lcm-client.com/belimo/matching/47103/c8cb570d5127ae96aaae8eee665ed09c,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47103
69,70,Resistors,Vishay,47122,MBB02070C1583F,MBB02070C1583FRP00,https://app.lcm-client.com/belimo/matching/47122/c8cb570d5127ae96aaae8eee665f1b46,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47122
70,71,Resistors,Vishay,47142,MBB02070C8201F,MBB02070C8201FRP00,https://app.lcm-client.com/belimo/matching/47142/c8cb570d5127ae96aaae8eee66606f98,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47142
71,72,Resistors,Vishay,47145,MBB02070C1203F,MBB02070C1203FRP00,https://app.lcm-client.com/belimo/matching/47145/c8cb570d5127ae96aaae8eee6660a704,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47145
72,73,Resistors,Vishay,47162,MBB02070C5362F,MBB02070C5362FRP00,https://app.lcm-client.com/belimo/matching/47162/c8cb570d5127ae96aaae8eee6660c3c6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47162
73,74,Resistors,Vishay,47168,MBB02070C3003F,MBB02070C3003FRP00,https://app.lcm-client.com/belimo/matching/47168/c8cb570d5127ae96aaae8eee6660fe68,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47168
74,75,Resistors,Vishay,47179,MBB02070C9760F,MBB02070C9760FRP00,https://app.lcm-client.com/belimo/matching/47179/c8cb570d5127ae96aaae8eee666120a3,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47179
75,76,Resistors,Vishay,40412-02701,CRCW06032K70DH,CRCW06032K70DHEAP,https://app.lcm-client.com/belimo/matching/40412-02701/ef351458b324e0850a464074929e4c4e,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/40412-02701
76,77,Resistors,Vishay,40412-02701,CRCW06032K70DK,CRCW06032K70DHEAP,https://app.lcm-client.com/belimo/matching/40412-02701/ef351458b324e0850a464074929e54c2,ok,Automotive,Exption,y,PPM Difference,https://app.lcm-client.com/belimo/part/40412-02701
77,78,Resistors,Vishay,40542,MBB02070C2702F,MBB02070C2702FRP00 ,https://app.lcm-client.com/belimo/matching/40542/ef351458b324e0850a464074929f8a38,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40542
78,79,Resistors,Vishay,40542,MBB0207IC2702F,MBB0207IC2702FRP00,https://app.lcm-client.com/belimo/matching/40542/ef351458b324e0850a464074929f962a,nok,Medical,Yes,y,Missing In LCM,https://app.lcm-client.com/belimo/part/40542
79,80,Resistors,Vishay,40542,MRS25000C2702F,MRS25000C2702FRP00,https://app.lcm-client.com/belimo/matching/40542/ef351458b324e0850a464074929f971d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40542
80,81,Resistors,Vishay,40602-01100,SMM02070C1100F,SMM02070C1100FBS00,https://app.lcm-client.com/belimo/matching/40602-01100/ef351458b324e0850a46407492a0fcf3,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01100
81,82,Resistors,Vishay,40602-01501,MMB02070C1501F,MMB02070C1501FB700,https://app.lcm-client.com/belimo/matching/40602-01501/ef351458b324e0850a46407492a1312e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01501
82,83,Resistors,Vishay,40602-01501,SMM02070C1501F,SMM02070C1501FBS00,https://app.lcm-client.com/belimo/matching/40602-01501/ef351458b324e0850a46407492a13317,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01501
83,84,Resistors,Vishay,40602-01503,MMB02070C1503F,MMB02070C1503FB200,https://app.lcm-client.com/belimo/matching/40602-01503/ef351458b324e0850a46407492a166ca,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01503
84,85,Resistors,Vishay,40602-01503,SMM02070C1503F,SMM02070C1503FBS00,https://app.lcm-client.com/belimo/matching/40602-01503/ef351458b324e0850a46407492a172df,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01503
85,86,Resistors,Vishay,40602-01801,MMB02070C1801F,MMB02070C1801FB700,https://app.lcm-client.com/belimo/matching/40602-01801/ef351458b324e0850a46407492a19e31,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01801
86,87,Resistors,Vishay,40602-01801,SMM02070C1801F,SMM02070C1801FBS00,https://app.lcm-client.com/belimo/matching/40602-01801/ef351458b324e0850a46407492a1adcd,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01801
87,88,Resistors,Vishay,40602-02201,MMB02070C2201F,MMB02070C2201FB700,https://app.lcm-client.com/belimo/matching/40602-02201/ef351458b324e0850a46407492a1e4d1,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02201
88,89,Resistors,Vishay,40602-02201,SMM02070C2201F,SMM02070C2201FBS00,https://app.lcm-client.com/belimo/matching/40602-02201/ef351458b324e0850a46407492a1e7f8,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02201
89,90,Resistors,Vishay,40602-02203,MMB02070C2203F,MMB02070C2203FB200,https://app.lcm-client.com/belimo/matching/40602-02203/ef351458b324e0850a46407492a21787,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02203
90,91,Resistors,Vishay,40602-04701,SMM02070C4701F,SMM02070C4701FBS00,https://app.lcm-client.com/belimo/matching/40602-04701/ef351458b324e0850a46407492a55cd6,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04701
91,92,Resistors,Vishay,40602-04702,MMB02070C4702F,MMB02070C4702FB200,https://app.lcm-client.com/belimo/matching/40602-04702/ef351458b324e0850a46407492a5987a,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04702
92,93,Resistors,Vishay,40602-04702,SMM02070C4702F,SMM02070C4702FBS00 ,https://app.lcm-client.com/belimo/matching/40602-04702/ef351458b324e0850a46407492a59e12,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04702
93,94,Resistors,Vishay,40602-04703,MMB02070C4703F,MMB02070C4703FB200 ,https://app.lcm-client.com/belimo/matching/40602-04703/ef351458b324e0850a46407492a5c84a,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04703
94,95,Resistors,Vishay,40602-04703,SMM02070C4703F,SMM02070C4703FBS00,https://app.lcm-client.com/belimo/matching/40602-04703/ef351458b324e0850a46407492a5cef1,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04703
95,96,Resistors,Vishay,40602-05100,MMB02070C5100F,MMB02070C5100FB700,https://app.lcm-client.com/belimo/matching/40602-05100/ef351458b324e0850a46407492a6213a,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05100
96,97,Resistors,Vishay,40602-05100,SMM02070C5100F,SMM02070C5100FBP00,https://app.lcm-client.com/belimo/matching/40602-05100/ef351458b324e0850a46407492a628ff,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05100
97,98,Resistors,Vishay,40602-05603,MMB02070C5603F,MMB02070C5603FB700,https://app.lcm-client.com/belimo/matching/40602-05603/ef351458b324e0850a46407492a653e8,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05603
98,99,Resistors,Vishay,40602-05603,SMM02070C5603F,SMM02070C5603FBS00,https://app.lcm-client.com/belimo/matching/40602-05603/ef351458b324e0850a46407492a65dfb,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05603
99,100,Resistors,Vishay,40602-05607,MMB02070C5607F,MMB02070C5607FB200,https://app.lcm-client.com/belimo/matching/40602-05607/ef351458b324e0850a46407492a66cc9,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05607
100,101,Resistors,Vishay,40613-02002,MCU08050D2002B,MCU08050D2002BP500,https://app.lcm-client.com/belimo/matching/40613-02002/a57dd45b8b8bfbbc6b72118464d889cb,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-02002
101,102,Resistors,Vishay,40613-02432,MCU08050D2431B,MCU08050D2431BP500,https://app.lcm-client.com/belimo/matching/40613-02432/a57dd45b8b8bfbbc6b72118464d8b980,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-02432
102,103,Resistors,Vishay,40613-03321,MCU08050D3321B,MCU08050D3321BP500,https://app.lcm-client.com/belimo/matching/40613-03321/a57dd45b8b8bfbbc6b72118464d8ef7d,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-03321
103,104,Resistors,Vishay,40613-03601,MCU08050D3601B,MCU08050D3601BP500,https://app.lcm-client.com/belimo/matching/40613-03601/a57dd45b8b8bfbbc6b72118464d918c6,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-03601
104,105,Resistors,Vishay,40613-04022,MCU08050D4022B,MCU08050D4022BP500,https://app.lcm-client.com/belimo/matching/40613-04022/a57dd45b8b8bfbbc6b72118464da3edf,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-04022
105,106,Resistors,Vishay,40613-06802,MCU08050D6802B,MCU08050D6802BP500,https://app.lcm-client.com/belimo/matching/40613-06802/a57dd45b8b8bfbbc6b72118464da579b,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-06802
106,107,Resistors,Vishay,40613-07871,MCU08050D7871B,MCU08050D7871BP500,https://app.lcm-client.com/belimo/matching/40613-07871/a57dd45b8b8bfbbc6b72118464da6f4d,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-07871
107,108,Resistors,Vishay,40613-09762,MCU08050D9762B,MCU08050D9762BP500,https://app.lcm-client.com/belimo/matching/40613-09762/a57dd45b8b8bfbbc6b72118464da97e7,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-09762
108,109,Resistors,Vishay,40617-01204,MMA02040C1205F,MMA02040C1205FB300,https://app.lcm-client.com/belimo/matching/40617-01204/a57dd45b8b8bfbbc6b72118464e1f209,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01204
109,110,Resistors,Vishay,40617-01208,MMA02040C1208F,MMA02040C1208FB300,https://app.lcm-client.com/belimo/matching/40617-01208/a57dd45b8b8bfbbc6b72118464e26c1f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01208
110,111,Resistors,Vishay,47215,MBB02070C3603F,MBB02070C3603FRP00,https://app.lcm-client.com/belimo/matching/47215/a57dd45b8b8bfbbc6b72118464fa91aa,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47215
111,112,Resistors,Vishay,47232,MBB02070C5622F,MBB02070C5622FRP00,https://app.lcm-client.com/belimo/matching/47232/a57dd45b8b8bfbbc6b72118464fabb7c,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47232
112,113,Resistors,Vishay,47245,MBB02070C1330F,MBB02070C1330FRP00,https://app.lcm-client.com/belimo/matching/47245/a57dd45b8b8bfbbc6b72118464fadaf4,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47245
113,114,Resistors,Vishay,47251,MBB02070C1371F,MBB02070C1371FRP00,https://app.lcm-client.com/belimo/matching/47251/a57dd45b8b8bfbbc6b72118464faf77a,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47251
114,115,Resistors,Vishay,47274,MBB02070C1108F,MBB02070C1108FRP00,https://app.lcm-client.com/belimo/matching/47274/a57dd45b8b8bfbbc6b72118464fb1287,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47274
115,116,Resistors,Vishay,47313,MBB02070C3303F,MBB02070C3303FRP00,https://app.lcm-client.com/belimo/matching/47313/a57dd45b8b8bfbbc6b72118464fb22db,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47313
116,117,Resistors,Vishay,47315,MBB02070C1604F,MBB02070C1604FRP00,https://app.lcm-client.com/belimo/matching/47315/a57dd45b8b8bfbbc6b72118464fb3e0d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47315
117,118,Resistors,Vishay,47316,MBB02070C4704F,MBB02070C4704FRP00,https://app.lcm-client.com/belimo/matching/47316/a57dd45b8b8bfbbc6b72118464fb5c4f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47316
118,119,Resistors,Vishay,47337,MBB02070C2002F,MBB02070C2002FRP00,https://app.lcm-client.com/belimo/matching/47337/a57dd45b8b8bfbbc6b72118464fb756d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47337
119,120,Resistors,Vishay,47339,MBB02070C6802F,MBB02070C6802FRP00,https://app.lcm-client.com/belimo/matching/47339/a57dd45b8b8bfbbc6b72118464fb8f39,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47339
120,121,Resistors,Vishay,40617-06801,SMM02040C6801F,SMM02040C6801FB000,https://app.lcm-client.com/belimo/matching/40617-06801/c8cb570d5127ae96aaae8eee664ba638,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06801
121,122,Resistors,Vishay,40617-06807,MMA02040C6807F,MMA02040C6807FB300,https://app.lcm-client.com/belimo/matching/40617-06807/c8cb570d5127ae96aaae8eee664c0b79,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06807
122,123,Resistors,Vishay,40617-06807,SMM02040B6807J,SMM02040B6807JB000,https://app.lcm-client.com/belimo/matching/40617-06807/c8cb570d5127ae96aaae8eee664c1061,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06807
123,124,Resistors,Vishay,40617-07502,MMA02040C7502F,MMA02040C7502FB200,https://app.lcm-client.com/belimo/matching/40617-07502/c8cb570d5127ae96aaae8eee664c7046,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-07502
124,125,Resistors,Vishay,40617-07502,SMM02040C7502F,SMM02040C7502FB000,https://app.lcm-client.com/belimo/matching/40617-07502/c8cb570d5127ae96aaae8eee664c780d,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-07502
125,126,Resistors,Vishay,40617-09107,MMA02040C9107F,MMA02040C9107FB300,https://app.lcm-client.com/belimo/matching/40617-09107/c8cb570d5127ae96aaae8eee664cd373,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-09107
126,127,Resistors,Vishay,40617-09107,SMM02040C9107F,SMM02040C9107FB000,https://app.lcm-client.com/belimo/matching/40617-09107/c8cb570d5127ae96aaae8eee664cd73a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-09107
127,128,Resistors,Vishay,40618-01001,CRCW25121K00JN,CRCW25121K00JNEG,https://app.lcm-client.com/belimo/matching/40618-01001/c8cb570d5127ae96aaae8eee664d0cdc,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/40618-01001
128,129,Resistors,Vishay,40618-01501,CRCW25121K50JN,CRCW25121K50JNEG,https://app.lcm-client.com/belimo/matching/40618-01501/c8cb570d5127ae96aaae8eee664d2f90,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/40618-01501
129,130,Resistors,Vishay,40618-02401,CRCW25122K40JN,CRCW25122K40JNEG,https://app.lcm-client.com/belimo/matching/40618-02401/c8cb570d5127ae96aaae8eee664d5a8d,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/40618-02401
130,131,Resistors,Vishay,47123,MBB02070C1873F,MBB02070C1873FRP00,https://app.lcm-client.com/belimo/matching/47123/c8cb570d5127ae96aaae8eee665f3f95,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47123
131,132,Resistors,Vishay,47125,MBB02070C1008F,MBB02070C1008FRP00,https://app.lcm-client.com/belimo/matching/47125/c8cb570d5127ae96aaae8eee665f5b74,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47125
132,133,Resistors,Vishay,47131,MBB02070C6193F,MBB02070C6193FRP00,https://app.lcm-client.com/belimo/matching/47131/c8cb570d5127ae96aaae8eee665f8495,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47131
133,134,Resistors,Vishay,47132,MBB02070C3323F,MBB02070C3323FRP00,https://app.lcm-client.com/belimo/matching/47132/c8cb570d5127ae96aaae8eee665fa357,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47132
134,135,Resistors,Vishay,47133,MBB02070C1433F,MBB02070C1433FRP00,https://app.lcm-client.com/belimo/matching/47133/c8cb570d5127ae96aaae8eee665fc181,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47133
135,136,Resistors,Vishay,47137,MBB02070C4700F,MBB02070C4700FRP00,https://app.lcm-client.com/belimo/matching/47137/c8cb570d5127ae96aaae8eee665fddc6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47137
136,137,Resistors,Vishay,47138,MBB02070C1653F,MBB02070C1653FRP00,https://app.lcm-client.com/belimo/matching/47138/c8cb570d5127ae96aaae8eee6660128b,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47138
137,138,Resistors,Vishay,47139,MBB02070C9104F,MBB02070C9104FRP00,https://app.lcm-client.com/belimo/matching/47139/c8cb570d5127ae96aaae8eee66602471,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47139
138,139,Resistors,Vishay,47140,MBB02070C3652F,MBB02070C3652FRP00,https://app.lcm-client.com/belimo/matching/47140/c8cb570d5127ae96aaae8eee6660397f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47140
139,140,Resistors,Vishay,47141,MBB02070C4873F,MBB02070C4873FRP00,https://app.lcm-client.com/belimo/matching/47141/c8cb570d5127ae96aaae8eee66605f85,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47141
140,141,Resistors,Vishay,40602-02203,SMM02070C2203F,SMM02070C2203FBS00,https://app.lcm-client.com/belimo/matching/40602-02203/ef351458b324e0850a46407492a2262b,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02203
141,142,Resistors,Vishay,40602-02204,MMB02070C2204F,MMB02070C2204FB200,https://app.lcm-client.com/belimo/matching/40602-02204/ef351458b324e0850a46407492a250b9,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02204
142,143,Resistors,Vishay,40602-02204,SMM02070C2204F,SMM02070C2204FBS00,https://app.lcm-client.com/belimo/matching/40602-02204/ef351458b324e0850a46407492a2542a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02204
143,144,Resistors,Vishay,40602-02401,MMB02070C2401F,MMB02070C2401FB200,https://app.lcm-client.com/belimo/matching/40602-02401/ef351458b324e0850a46407492a28bcc,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02401
144,145,Resistors,Vishay,40602-02401,SMM02070C2401F,SMM02070C2401FBS00,https://app.lcm-client.com/belimo/matching/40602-02401/ef351458b324e0850a46407492a295bf,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02401
145,146,Resistors,Vishay,40602-02402,MMB02070C2402F,MMB02070C2402FB200,https://app.lcm-client.com/belimo/matching/40602-02402/ef351458b324e0850a46407492a2d0e4,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02402
146,147,Resistors,Vishay,40602-02402,SMM02070C2402F,SMM02070C2402FBS00,https://app.lcm-client.com/belimo/matching/40602-02402/ef351458b324e0850a46407492a2d8ad,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02402
147,148,Resistors,Vishay,40602-02403,MMB02070C2403F,MMB02070C2403FB700,https://app.lcm-client.com/belimo/matching/40602-02403/ef351458b324e0850a46407492a2f357,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02403
148,149,Resistors,Vishay,40602-02403,SMM02070C2403F,SMM02070C2403FBP00,https://app.lcm-client.com/belimo/matching/40602-02403/ef351458b324e0850a46407492a2ffb8,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02403
149,150,Resistors,Vishay,40602-02491,MMB02070C2491F,MMB02070C2491FB700,https://app.lcm-client.com/belimo/matching/40602-02491/ef351458b324e0850a46407492a32ce6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02491
150,151,Resistors,Vishay,40602-06209,MMB02070C6209F,MMB02070C6209FB200,https://app.lcm-client.com/belimo/matching/40602-06209/ef351458b324e0850a46407492a6a237,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-06209
151,152,Resistors,Vishay,40602-06209,SMM02070C6209F,SMM02070C6209FBP00,https://app.lcm-client.com/belimo/matching/40602-06209/ef351458b324e0850a46407492a6a9a2,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-06209
152,153,Resistors,Vishay,40602-07502,MMB02070C7502F,MMB02070C7502FB700,https://app.lcm-client.com/belimo/matching/40602-07502/ef351458b324e0850a46407492a6e1c2,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-07502
153,154,Resistors,Vishay,40602-07502,SMM02070C7502F,SMM02070C7502FBS00,https://app.lcm-client.com/belimo/matching/40602-07502/ef351458b324e0850a46407492a6ee06,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-07502
154,155,Resistors,Vishay,40602-08063,MMB02070C8063F,MMB02070C8063FB700,https://app.lcm-client.com/belimo/matching/40602-08063/ef351458b324e0850a46407492a7303b,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08063
155,156,Resistors,Vishay,40602-08063,SMM02070C8063F,SMM02070C8063FBP00,https://app.lcm-client.com/belimo/matching/40602-08063/ef351458b324e0850a46407492a737bf,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08063
156,157,Resistors,Vishay,40602-08202,MMB02070C8202F,MMB02070C8202FB300,https://app.lcm-client.com/belimo/matching/40602-08202/ef351458b324e0850a46407492a76d3e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08202
157,158,Resistors,Vishay,40602-08202,SMM02070C8202F,SMM02070C8202FBS00,https://app.lcm-client.com/belimo/matching/40602-08202/ef351458b324e0850a46407492a770da,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08202
158,159,Resistors,Vishay,40602-08207,MMB02070C8207F,MMB02070C8207FB200,https://app.lcm-client.com/belimo/matching/40602-08207/ef351458b324e0850a46407492a78da5,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08207
159,160,Resistors,Vishay,40602-09100,MMB02070C9100F,MMB02070C9100FB700,https://app.lcm-client.com/belimo/matching/40602-09100/ef351458b324e0850a46407492a7a753,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-09100
160,161,Resistors,Vishay,40617-01108,SMM02040C1108F,SMM02040C1108FB300,https://app.lcm-client.com/belimo/matching/40617-01108/ef351458b324e0850a46407492bb4cca,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01108
161,162,Resistors,Vishay,40617-01201,MMA02040C1201F,MMA02040C1201FB300,https://app.lcm-client.com/belimo/matching/40617-01201/ef351458b324e0850a46407492bb95e2,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01201
162,163,Resistors,Vishay,40617-01201,SMM02040C1201F,SMM02040C1201FB000,https://app.lcm-client.com/belimo/matching/40617-01201/ef351458b324e0850a46407492bb972a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01201
163,164,Resistors,Vishay,40617-01202,MMA02040C1202F,MMA02040C1202FB000,https://app.lcm-client.com/belimo/matching/40617-01202/ef351458b324e0850a46407492bbf6a3,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01202
164,165,Resistors,Vishay,40617-01202,SMM02040C1202F,SMM02040C1202FB000,https://app.lcm-client.com/belimo/matching/40617-01202/ef351458b324e0850a46407492bbfc0f,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01202
165,166,Resistors,Vishay,40617-01801,MMA02040C1801F,MMA02040C1801FB000,https://app.lcm-client.com/belimo/matching/40617-01801/ef351458b324e0850a46407492be01bb,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01801
166,167,Resistors,Vishay,40617-01801,SMM02040C1801F,SMM02040C1801FB000,https://app.lcm-client.com/belimo/matching/40617-01801/ef351458b324e0850a46407492be0e90,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01801
167,168,Resistors,Vishay,40617-01808,MMA02040C1808F,MMA02040C1808FB000,https://app.lcm-client.com/belimo/matching/40617-01808/ef351458b324e0850a46407492be536e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01808
168,169,Resistors,Vishay,40617-01808,SMM02040C1808F,SMM02040C1808FB300,https://app.lcm-client.com/belimo/matching/40617-01808/ef351458b324e0850a46407492be5915,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01808
169,170,Resistors,Vishay,40617-02002,MMA02040C2002F,MMA02040C2002FB300,https://app.lcm-client.com/belimo/matching/40617-02002/ef351458b324e0850a46407492becaa5,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02002
170,171,Resistors,Vishay,40754,PR02FS0205608K,PR02FS0205608KR500,https://app.lcm-client.com/belimo/matching/40754/ef351458b324e0850a46407492c56031,nok,Automotive,Yes,y,Requires Update,https://app.lcm-client.com/belimo/part/40754
171,172,Resistors,Vishay,40754-01502,CPF215K000JN,CPF215K000JNEE6,https://app.lcm-client.com/belimo/matching/40754/ef351458b324e0850a46407492c56031,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40754-01502
172,173,Resistors,Vishay,40754-01502,PR02000201502J,PR02000201502JR500,https://app.lcm-client.com/belimo/matching/40754-01502/ef351458b324e0850a46407492c57dde,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40754-01502
173,174,Resistors,Vishay,40754-08201,CPF28K2000JN,CPF28K2000JNEE6,https://app.lcm-client.com/belimo/matching/40754-08201/ef351458b324e0850a46407492c580d0,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40754-08201
174,175,Resistors,Vishay,40754-08201,PR02000208201J,PR02000208201JR500,https://app.lcm-client.com/belimo/matching/40754-08201/ef351458b324e0850a46407492c5908d,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40754-08201
175,176,Resistors,Vishay,40754-15608,CPF25R6000JN,CPF25R6000JNEE6,https://app.lcm-client.com/belimo/matching/40754-15608/ef351458b324e0850a46407492c5b5db,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40754-15608
176,177,Resistors,Vishay,40754-15608,PR02000205608J,PR02000205608JR500,https://app.lcm-client.com/belimo/matching/40754-15608/ef351458b324e0850a46407492c5bcec,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40754-15608
177,178,Resistors,Vishay,40850,MBB02070C1101F,MBB02070C1101FRP00,https://app.lcm-client.com/belimo/matching/40850/ef351458b324e0850a46407492c6a39a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40850
178,179,Resistors,Vishay,40850,MRS25000C1101F,MRS25000C1101FRP00,https://app.lcm-client.com/belimo/matching/40850/ef351458b324e0850a46407492c6a870,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40850
179,180,Resistors,Vishay,40851,MBB02070C1501F,MBB02070C1501FRP00,https://app.lcm-client.com/belimo/matching/40851/ef351458b324e0850a46407492c6be78,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40851
180,181,Resistors,Vishay,40862,MRS25000C2203F,MRS25000C2203FRP00,https://app.lcm-client.com/belimo/matching/40862/ef351458b324e0850a46407492c741c4,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40862
181,182,Resistors,Vishay,40867,MBB02070C2403F,MBB02070C2403FRP00,https://app.lcm-client.com/belimo/matching/40867/ef351458b324e0850a46407492c751d7,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40867
182,183,Resistors,Vishay,40867,MRS25000C2403F,MRS25000C2403FRP00,https://app.lcm-client.com/belimo/matching/40867/ef351458b324e0850a46407492c755f8,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40867
183,184,Resistors,Vishay,40877,MBB02070C8661F,MBB02070C8661FRP00,https://app.lcm-client.com/belimo/matching/40877/ef351458b324e0850a46407492c770f6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40877
184,185,Resistors,Vishay,40877,MRS25000C8661F,MRS25000C8661FRP00,https://app.lcm-client.com/belimo/matching/40877/ef351458b324e0850a46407492c77fc8,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40877
185,186,Resistors,Vishay,40885,MBB02070C4221F,MBB02070C4221FRP00,https://app.lcm-client.com/belimo/matching/40885/ef351458b324e0850a46407492c78d94,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40885
186,187,Resistors,Vishay,40885,MRS25000C4221F,MRS25000C4221FRP00,https://app.lcm-client.com/belimo/matching/40885/ef351458b324e0850a46407492c791fe,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40885
187,188,Resistors,Vishay,40897,MBB02070C1009F,MBB02070C1009FRP00,https://app.lcm-client.com/belimo/matching/40897/ef351458b324e0850a46407492c85cab,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40897
188,189,Resistors,Vishay,40897,MRS25000C1009F,MRS25000C1009FRP00,https://app.lcm-client.com/belimo/matching/40897/ef351458b324e0850a46407492c85f06,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40897
189,190,Resistors,Vishay,40898,MBB02070C1102F,MBB02070C1102FRP00,https://app.lcm-client.com/belimo/matching/40898/ef351458b324e0850a46407492c87371,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40898
190,191,Resistors,Vishay,40926,MRS25000C8202F,MRS25000C8202FRP00,https://app.lcm-client.com/belimo/matching/40926/ef351458b324e0850a46407492c9893e,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40926
191,192,Resistors,Vishay,40927,MBB02070C1003F,MBB02070C1003FRP00,https://app.lcm-client.com/belimo/matching/40927/ef351458b324e0850a46407492c99e8a,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40927
192,193,Resistors,Vishay,40927,MRS25000C1003F,MRS25000C1003FRP00,https://app.lcm-client.com/belimo/matching/40927/ef351458b324e0850a46407492c9aaf7,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40927
193,194,Resistors,Vishay,40934,MRS25000C6202F,MRS25000C6202FRP00,https://app.lcm-client.com/belimo/matching/40934/ef351458b324e0850a46407492c9d6ee,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40934
194,195,Resistors,Vishay,40941,MBB02070C5602F,MBB02070C5602FRP00,https://app.lcm-client.com/belimo/matching/40941/ef351458b324e0850a46407492c9f1f8,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40941
195,196,Resistors,Vishay,40941,MRS25000C5602F,MRS25000C5602FRP00,https://app.lcm-client.com/belimo/matching/40941/ef351458b324e0850a46407492c9f940,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40941
196,197,Resistors,Vishay,40949,MBB02070C1500F,MBB02070C1500FRP00,https://app.lcm-client.com/belimo/matching/40949/ef351458b324e0850a46407492ca0e61,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40949
197,198,Resistors,Vishay,40949,MRS25000C1500F,MRS25000C1500FRP00,https://app.lcm-client.com/belimo/matching/40949/ef351458b324e0850a46407492ca16be,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40949
198,199,Resistors,Vishay,41237-01102,MMA02040D1102C,MMA02040D1102CB300,https://app.lcm-client.com/belimo/matching/40949/ef351458b324e0850a46407492ca16be,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/41237-01102
199,200,Resistors,Vishay,41749-02200,CMB02070X2200G,CMB02070X2200GB700,https://app.lcm-client.com/belimo/matching/41749-02200/ef351458b324e0850a46407492cb2e74,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/41749-02200
200,201,Resistors,Vishay,41861-02001,MCS04020D2001B,MCS04020D2001BE000,https://app.lcm-client.com/belimo/matching/41861-02001/ef351458b324e0850a46407492cd04a3,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/41861-02001
201,202,Resistors,Vishay,41861-02053,MCS04020D2053B,MCS04020D2053BE000,https://app.lcm-client.com/belimo/matching/41861-02053/ef351458b324e0850a46407492cd3674,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/41861-02053
202,203,Resistors,Vishay,41861-02702,MCS04020D2702B,MCS04020D2702BE000,https://app.lcm-client.com/belimo/matching/41861-02702/ef351458b324e0850a46407492cd5b69,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/41861-02702
203,204,Resistors,Vishay,41861-06802,MCS04020D6802B,MCS04020D6802BE000,https://app.lcm-client.com/belimo/matching/41861-06802/ef351458b324e0850a46407492cd9fd4,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/41861-06802
204,205,Resistors,Vishay,47012-02550,MBB02070C2550F,MBB02070C2550FRP00,https://app.lcm-client.com/belimo/matching/47012-02550/ef351458b324e0850a46407492d6899c,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/47012-02550
205,206,Resistors,Vishay,47012-02550,MRS25000C2550F,MRS25000C2550FRP00,https://app.lcm-client.com/belimo/matching/47012-02550/ef351458b324e0850a46407492d68c0f,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-02550
206,207,Resistors,Vishay,47012-03303,MRS25000C3303F,MRS25000C3303FRP00,https://app.lcm-client.com/belimo/matching/47012-03303/ef351458b324e0850a46407492d6aa08,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-03303
207,208,Resistors,Vishay,47012-03308,MBB02070C3308F,MBB02070C3308FRP00,https://app.lcm-client.com/belimo/matching/47012-03308/ef351458b324e0850a46407492d6c42d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47012-03308
208,209,Resistors,Vishay,47012-03308,MRS25000C3308F,MRS25000C3308FRP00,https://app.lcm-client.com/belimo/matching/47012-03308/ef351458b324e0850a46407492d6d03b,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-03308
209,210,Resistors,Vishay,47012-03830,MBB02070C3830F,MBB02070C3830FRP00,https://app.lcm-client.com/belimo/matching/47012-03830/ef351458b324e0850a46407492d6eaad,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/47012-03830
210,211,Resistors,Vishay,47042,MBB02070C1503F,MBB02070C1503FRP00,https://app.lcm-client.com/belimo/matching/47042/ef351458b324e0850a46407492d86be4,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/47042
211,212,Resistors,Vishay,47355-01279,MBB02070C1279F,MBB02070C1279FRP00,https://app.lcm-client.com/belimo/matching/47355-01279/ef351458b324e0850a46407492db9a16,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01279
212,213,Resistors,Vishay,47355-01279,MRS25000C1279F,MRS25000C1279FRP00,https://app.lcm-client.com/belimo/matching/47355-01279/ef351458b324e0850a46407492dba77c,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01279
213,214,Resistors,Vishay,47355-01501,MRS25000C1501F,MRS25000C1501FRP00,https://app.lcm-client.com/belimo/matching/47355-01501/ef351458b324e0850a46407492dbc315,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01501
214,215,Resistors,Vishay,47355-01653,MRS25000C1653F,MRS25000C1653FRP00,https://app.lcm-client.com/belimo/matching/47355-01653/ef351458b324e0850a46407492dbf3fd,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01653
215,216,Resistors,Vishay,47355-02671,MRS25000C2671F,MRS25000C2671FRP00,https://app.lcm-client.com/belimo/matching/47355-02671/ef351458b324e0850a46407492dc5b8c,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-02671
216,217,Resistors,Vishay,47355-03301,MRS25000C3301F,MRS25000C3301FRP00,https://app.lcm-client.com/belimo/matching/47355-03301/ef351458b324e0850a46407492dc82bf,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-03301
217,218,Resistors,Vishay,47355-05609,MBB02070C5609F,MBB02070C5609FRP00,https://app.lcm-client.com/belimo/matching/47355-05609/ef351458b324e0850a46407492dcab28,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-05609
218,219,Resistors,Vishay,47355-05609,MRS25000C5609F,MRS25000C5609FRP00,https://app.lcm-client.com/belimo/matching/47355-05609/ef351458b324e0850a46407492dcb421,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-05609
219,220,Resistors,Vishay,47355-05762,MBB02070C5762F,MBB02070C5762FRP00,https://app.lcm-client.com/belimo/matching/47355-05762/ef351458b324e0850a46407492dcdf45,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-05762
220,221,Resistors,Vishay,40617-01800,SMM02040C1800F,SMM02040C1800FB000,https://app.lcm-client.com/belimo/matching/40617-01800/a57dd45b8b8bfbbc6b72118464e48be7,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01800
221,222,Resistors,Vishay,40617-03001,MMA02040C3001F,MMA02040C3001FB000,https://app.lcm-client.com/belimo/matching/40617-03001/a57dd45b8b8bfbbc6b72118464e73cce,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03001
222,223,Resistors,Vishay,40617-03001,SMM02040C3001F,SMM02040C3001FB000,https://app.lcm-client.com/belimo/matching/40617-03001/a57dd45b8b8bfbbc6b72118464e74406,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03001
223,224,Resistors,Vishay,40617-03008,MMA02040C3008F,MMA02040C3008FB000,https://app.lcm-client.com/belimo/matching/40617-03008/a57dd45b8b8bfbbc6b72118464e79b6e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03008
224,225,Resistors,Vishay,40617-03008,SMM02040C3008F,SMM02040C3008FB000,https://app.lcm-client.com/belimo/matching/40617-03008/a57dd45b8b8bfbbc6b72118464e7a30e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03008
225,226,Resistors,Vishay,40617-03301,MMA02040C3301F,MMA02040C3301FB000,https://app.lcm-client.com/belimo/matching/40617-03301/a57dd45b8b8bfbbc6b72118464e81354,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03301
226,227,Resistors,Vishay,40617-03301,SMM02040C3301F,SMM02040C3301FB000,https://app.lcm-client.com/belimo/matching/40617-03301/a57dd45b8b8bfbbc6b72118464e818d6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03301
227,228,Resistors,Vishay,40617-03303,MMA02040C3303F,MMA02040C3303FB000,https://app.lcm-client.com/belimo/matching/40617-03303/a57dd45b8b8bfbbc6b72118464e88cee,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03303
228,229,Resistors,Vishay,40617-03303,SMM02040C3303F,SMM02040C3303FB000,https://app.lcm-client.com/belimo/matching/40617-03303/a57dd45b8b8bfbbc6b72118464e896d0,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03303
229,230,Resistors,Vishay,40617-03901,MMA02040C3901F,MMA02040C3901FB000,https://app.lcm-client.com/belimo/matching/40617-03901/a57dd45b8b8bfbbc6b72118464e90c53,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03901
230,231,Resistors,Vishay,47001,MBB02070C1202F,MBB02070C1202FRP00,https://app.lcm-client.com/belimo/matching/47001/c8cb570d5127ae96aaae8eee665a9f99,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47001
231,232,Resistors,Vishay,47002,MBB02070C1000F,MBB02070C1000FRP00,https://app.lcm-client.com/belimo/matching/47002/c8cb570d5127ae96aaae8eee665abee6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47002
232,233,Resistors,Vishay,47004,MBB02070C1804F,MBB02070C1804FRP00,https://app.lcm-client.com/belimo/matching/47004/c8cb570d5127ae96aaae8eee665ae642,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47004
233,234,Resistors,Vishay,47007,MBB02070C3002F,MBB02070C3002FRP00,https://app.lcm-client.com/belimo/matching/47007/c8cb570d5127ae96aaae8eee665b0d45,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47007
234,235,Resistors,Vishay,47008,MBB02070C4701F,MBB02070C4701FRP00,https://app.lcm-client.com/belimo/matching/47008/c8cb570d5127ae96aaae8eee665b34df,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47008
235,236,Resistors,Vishay,47011,MBB02070C1502F,MBB02070C1502FRP00,https://app.lcm-client.com/belimo/matching/47011/c8cb570d5127ae96aaae8eee665b5e12,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47011
236,237,Resistors,Vishay,47012-01001,MBB02070C1001F,MBB02070C1001FRP00,https://app.lcm-client.com/belimo/matching/47012-01001/c8cb570d5127ae96aaae8eee665b7c87,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47012-01001
237,238,Resistors,Vishay,47012-01001,MRS25000C1001F,MRS25000C1001FRP00,https://app.lcm-client.com/belimo/matching/47012-01001/c8cb570d5127ae96aaae8eee665b7ef3,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-01001
238,239,Resistors,Vishay,47012-02371,MBB02070C2371F,MBB02070C2371FRP00,https://app.lcm-client.com/belimo/matching/47012-02371/c8cb570d5127ae96aaae8eee665b92cf,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47012-02371
239,240,Resistors,Vishay,40602-01100,MMB02070C1100F,MMB02070C1100FB700,https://app.lcm-client.com/belimo/matching/40602-01100/ef351458b324e0850a46407492a0f34b,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01100
240,241,Resistors,Vishay,40602-02491,SMM02070C2491F,SMM02070C2491FBP00,https://app.lcm-client.com/belimo/matching/40602-02491/ef351458b324e0850a46407492a32d66,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02491
241,242,Resistors,Vishay,40602-02703,MMB02070C2703F,MMB02070C2703FB700,https://app.lcm-client.com/belimo/matching/40602-02703/ef351458b324e0850a46407492a36b57,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02703
242,243,Resistors,Vishay,40602-02703,SMM02070C2703F,SMM02070C2703FBS00,https://app.lcm-client.com/belimo/matching/40602-02703/ef351458b324e0850a46407492a3748f,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02703
243,244,Resistors,Vishay,40602-03000,MMB02070C3000F,MMB02070C3000FB700,https://app.lcm-client.com/belimo/matching/40602-03000/ef351458b324e0850a46407492a3b4b3,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-03000
244,245,Resistors,Vishay,40602-03000,SMM02070C3000F,SMM02070C3000FBS00,https://app.lcm-client.com/belimo/matching/40602-03000/ef351458b324e0850a46407492a3be47,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-03000
245,246,Resistors,Vishay,40602-03303,MMB02070C3303F,MMB02070C3303FB700,https://app.lcm-client.com/belimo/matching/40602-03303/ef351458b324e0850a46407492a3dded,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-03303
246,247,Resistors,Vishay,40602-03303,SMM02070C3303F,SMM02070C3303FBS00,https://app.lcm-client.com/belimo/matching/40602-03303/ef351458b324e0850a46407492a3e67a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-03303
247,248,Resistors,Vishay,40602-04700,MMB02070C4700F,MMB02070C4700FB700,https://app.lcm-client.com/belimo/matching/40602-04700/ef351458b324e0850a46407492a51eab,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04700
248,249,Resistors,Vishay,40602-04700,SMM02070C4700F,SMM02070C4700FBP00,https://app.lcm-client.com/belimo/matching/40602-04700/ef351458b324e0850a46407492a52341,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04700
249,250,Resistors,Vishay,40617-01108,MMA02040C1108F,MMA02040C1108FB000,https://app.lcm-client.com/belimo/matching/40617-01108/ef351458b324e0850a46407492bb453c,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01108
250,251,Resistors,Vishay,40617-02002,SMM02040C2002F,SMM02040C2002FB000,https://app.lcm-client.com/belimo/matching/40617-02002/ef351458b324e0850a46407492bed203,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02002
251,252,Resistors,Vishay,40617-02008,MMA02040C2008F,MMA02040C2008FB000,https://app.lcm-client.com/belimo/matching/40617-02008/ef351458b324e0850a46407492bf3690,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02008
252,253,Resistors,Vishay,40617-02008,SMM02040C2008F,SMM02040C2008FB000,https://app.lcm-client.com/belimo/matching/40617-02008/ef351458b324e0850a46407492bf3890,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02008
253,254,Resistors,Vishay,40617-02201,MMA02040C2001F,MMA02040C2001FB000,https://app.lcm-client.com/belimo/matching/40617-02201/ef351458b324e0850a46407492bfa0e4,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02201
254,255,Resistors,Vishay,40617-02201,SMM02040C2201F,SMM02040C2201FB000,https://app.lcm-client.com/belimo/matching/40617-02201/ef351458b324e0850a46407492bfaa90,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02201
255,256,Resistors,Vishay,40617-02202,SMM02040C2202F,SMM02040C2202FB000,https://app.lcm-client.com/belimo/matching/40617-02202/ef351458b324e0850a46407492c02755,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02202
256,257,Resistors,Vishay,40617-02402,MMA02040C2402F,MMA02040C2402FB000,https://app.lcm-client.com/belimo/matching/40617-02402/ef351458b324e0850a46407492c086bf,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02402
257,258,Resistors,Vishay,40617-02402,SMM02040C2402F,SMM02040C2402FB000,https://app.lcm-client.com/belimo/matching/40617-02402/ef351458b324e0850a46407492c09313,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02402
258,259,Resistors,Vishay,40617-02408,MMA02040C2408F,MMA02040C2408FB000,https://app.lcm-client.com/belimo/matching/40617-02408/ef351458b324e0850a46407492c0cc99,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02408
259,260,Resistors,Vishay,40862,MBB02070C2203F,MBB02070C2203FRP00,https://app.lcm-client.com/belimo/matching/40862/ef351458b324e0850a46407492c74003,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40862
260,261,Resistors,Vishay,40898,MRS25000C1102F,MRS25000C1102FRP00,https://app.lcm-client.com/belimo/matching/40898/ef351458b324e0850a46407492c879f0,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40898
261,262,Resistors,Vishay,40901,MBB02070C4992F,MBB02070C4992FRP00,https://app.lcm-client.com/belimo/matching/40901/ef351458b324e0850a46407492c8980e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40901
262,263,Resistors,Vishay,40901,MRS25000C4992F,MRS25000C4992FRP00,https://app.lcm-client.com/belimo/matching/40901/ef351458b324e0850a46407492c8a5f3,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40901
263,264,Resistors,Vishay,40913,MBB02070C2201F,MBB02070C2201FRP00,https://app.lcm-client.com/belimo/matching/40913/ef351458b324e0850a46407492c8cd11,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40913
264,265,Resistors,Vishay,40913,MRS25000C2201F,MRS25000C2201FRP00,https://app.lcm-client.com/belimo/matching/40913/ef351458b324e0850a46407492c8ced5,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40913
265,266,Resistors,Vishay,40915,MRS25000C6802F,MRS25000C6802FRP00,https://app.lcm-client.com/belimo/matching/40915/ef351458b324e0850a46407492c8f08b,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40915
266,267,Resistors,Vishay,40919,MRS25000C8201F,MRS25000C8201FRP00,https://app.lcm-client.com/belimo/matching/40919/ef351458b324e0850a46407492c91498,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40919
267,268,Resistors,Vishay,40924,MBB02070C1002F,MBB02070C1002FRP00,https://app.lcm-client.com/belimo/matching/40924/ef351458b324e0850a46407492c95e69,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40924
268,269,Resistors,Vishay,40924,MRS25000C1002F,MRS25000C1002FRP00,https://app.lcm-client.com/belimo/matching/40924/ef351458b324e0850a46407492c9667f,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40924
269,270,Resistors,Vishay,41861-01003,MCS04020D1003B,MCS04020D1003BE500,https://app.lcm-client.com/belimo/matching/41861-01003/ef351458b324e0850a46407492ccbe77,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/41861-01003
270,271,Resistors,Vishay,47012-03830,MRS25000C3830F,MRS25000C3830FRP00,https://app.lcm-client.com/belimo/matching/47012-03830/ef351458b324e0850a46407492d6f482,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-03830
271,272,Resistors,Vishay,47012-04531,MRS25000C4531F,MRS25000C4531FRP00,https://app.lcm-client.com/belimo/matching/47012-04531/ef351458b324e0850a46407492d71357,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-04531
272,273,Resistors,Vishay,47012-06192,MBB02070C6192F,MBB02070C6192FRP00,https://app.lcm-client.com/belimo/matching/47012-06192/ef351458b324e0850a46407492d72930,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47012-06192
273,274,Resistors,Vishay,47012-06192,MRS25000C6192F,MRS25000C6192FRP00,https://app.lcm-client.com/belimo/matching/47012-06192/ef351458b324e0850a46407492d735ec,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-06192
274,275,Resistors,Vishay,47013,MBB02070C5600F,MBB02070C5600FRP00,https://app.lcm-client.com/belimo/matching/47013/ef351458b324e0850a46407492d77c2d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47013
275,276,Resistors,Vishay,47016,MBB02070C2102F,MBB02070C2102FRP00,https://app.lcm-client.com/belimo/matching/47016/ef351458b324e0850a46407492d79a35,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47016
276,277,Resistors,Vishay,47017,MBB02070C2802F,MBB02070C2802FRP00,https://app.lcm-client.com/belimo/matching/47017/ef351458b324e0850a46407492d7bc7e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47017
277,278,Resistors,Vishay,47030,MBB02070C1004F,MBB02070C1004FRP00,https://app.lcm-client.com/belimo/matching/47030/ef351458b324e0850a46407492d7ea45,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47030
278,279,Resistors,Vishay,47035,MBB02070C1802F,MBB02070C1802FRP00,https://app.lcm-client.com/belimo/matching/47035/ef351458b324e0850a46407492d82ea5,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47035
279,280,Resistors,Vishay,47355-01208,MRS25000C1208F,MRS25000C1208FRP00,https://app.lcm-client.com/belimo/matching/47355-01208/a57dd45b8b8bfbbc6b72118464fc8178,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01208
280,281,Resistors,Vishay,47355-01209,MBB02070C1209F,MBB02070C1209FRP00,https://app.lcm-client.com/belimo/matching/47355-01209/a57dd45b8b8bfbbc6b72118464fca02d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01209
281,282,Resistors,Vishay,47355-01209,MRS25000C1209F,MRS25000C1209FRP00,https://app.lcm-client.com/belimo/matching/47355-01209/a57dd45b8b8bfbbc6b72118464fcacd1,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01209
282,283,Resistors,Vishay,40617-01001,MMA02040C1001F,MMA02040C1001FB000,https://app.lcm-client.com/belimo/matching/40617-01001/c8cb570d5127ae96aaae8eee66425d73,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01001
283,284,Resistors,Vishay,40617-01001,SMM02040C1001F,SMM02040C1001FB000,https://app.lcm-client.com/belimo/matching/40617-01001/c8cb570d5127ae96aaae8eee664273bd,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01001
284,285,Resistors,Vishay,40617-04701,MMA02040C4701F,MMA02040C4701FB000,https://app.lcm-client.com/belimo/matching/40617-04701/c8cb570d5127ae96aaae8eee66480626,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04701
285,286,Resistors,Vishay,40617-04701,SMM02040C4701F,SMM02040C4701FB000,https://app.lcm-client.com/belimo/matching/40617-04701/c8cb570d5127ae96aaae8eee66480c80,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04701
286,287,Resistors,Vishay,40617-04708,MMA02040C4708F,MMA02040C4708FB000,https://app.lcm-client.com/belimo/matching/40617-04708/c8cb570d5127ae96aaae8eee66486f7f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04708
287,288,Resistors,Vishay,40617-04708,SMM02040C4708F,SMM02040C4708FB000,https://app.lcm-client.com/belimo/matching/40617-04708/c8cb570d5127ae96aaae8eee6648785d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04708
288,289,Resistors,Vishay,40617-04992,MMA02040C4992F,MMA02040C4992FB000,https://app.lcm-client.com/belimo/matching/40617-04992/c8cb570d5127ae96aaae8eee6648d911,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04992
289,290,Resistors,Vishay,40602-04701,MMB02070C4701F,MMB02070C4701FB700,https://app.lcm-client.com/belimo/matching/40602-04701/ef351458b324e0850a46407492a55a67,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04701
290,291,Resistors,Vishay,40602-09100,SMM02070C9100F,SMM02070C9100FBS00,https://app.lcm-client.com/belimo/matching/40602-09100/ef351458b324e0850a46407492a7a870,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-09100
291,292,Resistors,Vishay,40617-01002,MMA02040C1002F,MMA02040C1002FB000,https://app.lcm-client.com/belimo/matching/40617-01002/ef351458b324e0850a46407492b97ffb,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01002
292,293,Resistors,Vishay,40617-01002,SMM02040C1002F,SMM02040C1002FB000,https://app.lcm-client.com/belimo/matching/40617-01002/ef351458b324e0850a46407492b98f3c,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01002
293,294,Resistors,Vishay,40617-01003,MMA02040C1003F,MMA02040C1003FB000,https://app.lcm-client.com/belimo/matching/40617-01003/ef351458b324e0850a46407492b9d7bd,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01003
294,295,Resistors,Vishay,40617-01003,SMM02040C1003F,SMM02040C1003FB000,https://app.lcm-client.com/belimo/matching/40617-01003/ef351458b324e0850a46407492b9e217,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01003
295,296,Resistors,Vishay,40617-01008,MMA02040C1008F,MMA02040C1008FB000,https://app.lcm-client.com/belimo/matching/40617-01008/ef351458b324e0850a46407492ba4463,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01008
296,297,Resistors,Vishay,40617-01008,SMM02040C1008F,SMM02040C1008FB000,https://app.lcm-client.com/belimo/matching/40617-01008/ef351458b324e0850a46407492ba493f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01008
297,298,Resistors,Vishay,40617-01009,MMA02040C1009F,MMA02040C1009FB000,https://app.lcm-client.com/belimo/matching/40617-01009/ef351458b324e0850a46407492baaa84,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01009
298,299,Resistors,Vishay,40617-01009,SMM02040C1009F,SMM02040C1009FB000,https://app.lcm-client.com/belimo/matching/40617-01009/ef351458b324e0850a46407492bab791,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01009
299,300,Resistors,Vishay,40926,MBB02070C8202F,MBB02070C8202FRP00,https://app.lcm-client.com/belimo/matching/40926/ef351458b324e0850a46407492c97f9f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40926
300,301,Resistors,Vishay,41749-06800,CMB02070X6800G,CMB02070X6800GB700,https://app.lcm-client.com/belimo/matching/41749-06800/ef351458b324e0850a46407492cb3c37,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/41749-06800
301,302,Resistors,Vishay,41770-02401,CRCW12182K40FK,CRCW12182K40FKEK,https://app.lcm-client.com/belimo/matching/41770-02401/ef351458b324e0850a46407492cb4b4c,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41770-02401
302,303,Resistors,Vishay,41770-02401,RCL12182K40FK,RCL12182K40FKEK,https://app.lcm-client.com/belimo/matching/41770-02401/ef351458b324e0850a46407492cb5a01,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41770-02401
303,304,Resistors,Vishay,41770-02709,CRCW121827R0FK,CRCW121827R0FKEK,https://app.lcm-client.com/belimo/matching/41770-02709/ef351458b324e0850a46407492cb724c,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41770-02709
304,305,Resistors,Vishay,41770-02709,RCL121827R0FK,RCL121827R0FKEK,https://app.lcm-client.com/belimo/matching/41770-02709/ef351458b324e0850a46407492cb7c46,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41770-02709
305,306,Resistors,Vishay,41770-09100,CRCW1218910RFK,CRCW1218910RFKEK,https://app.lcm-client.com/belimo/matching/41770-09100/ef351458b324e0850a46407492cb859c,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41770-09100
306,307,Resistors,Vishay,41770-09100,RCL1218910RFK,RCL1218910RFKEK,https://app.lcm-client.com/belimo/matching/41770-09100/ef351458b324e0850a46407492cb8df7,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41770-09100
307,308,Resistors,Vishay,41807-08208,CRCW25128R20JN,CRCW25128R20JNEG,https://app.lcm-client.com/belimo/matching/41807-08208/ef351458b324e0850a46407492cc6d55,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41807-08208
308,309,Resistors,Vishay,41857-04700,CMA02040X4700G,CMA02040X4700GB300,https://app.lcm-client.com/belimo/matching/41857-04700/ef351458b324e0850a46407492cc8de1,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/41857-04700
309,310,Resistors,Vishay,40550,MBB0207IC1203F,MBB0207IC1203FRP00,https://app.lcm-client.com/belimo/matching/40550/ef351458b324e0850a464074929fa8a6,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40550
310,311,Resistors,Vishay,40550,MRS25000C1203F,MRS25000C1203FRP00,https://app.lcm-client.com/belimo/matching/40550/ef351458b324e0850a464074929faa94,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40550
311,312,Resistors,Vishay,40602-01001,MMB02070C1001F,MMB02070C1001FB700,https://app.lcm-client.com/belimo/matching/40602-01001/ef351458b324e0850a464074929fd84b,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01001
312,313,Resistors,Vishay,40602-01001,SMM02070C1001F,SMM02070C1001FBS00,https://app.lcm-client.com/belimo/matching/40602-01001/ef351458b324e0850a464074929fe654,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01001
313,314,Resistors,Vishay,40602-01002,MMB02070C1002F,MMB02070C1002FB700,https://app.lcm-client.com/belimo/matching/40602-01002/ef351458b324e0850a46407492a00ad0,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01002
314,315,Resistors,Vishay,40602-01002,SMM02070C1002F,SMM02070C1002FBS00,https://app.lcm-client.com/belimo/matching/40602-01002/ef351458b324e0850a46407492a00ede,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01002
315,316,Resistors,Vishay,40602-01004,MMB02070C1004F,MMB02070C1004FB700,https://app.lcm-client.com/belimo/matching/40602-01004/ef351458b324e0850a46407492a03473,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01004
316,317,Resistors,Vishay,40602-01004,SMM02070C1004F,SMM02070C1004FBS00,https://app.lcm-client.com/belimo/matching/40602-01004/ef351458b324e0850a46407492a03d9c,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01004
317,318,Resistors,Vishay,40861,MBB02070C2202F,MBB02070C2202FRP00,https://app.lcm-client.com/belimo/matching/40861/ef351458b324e0850a46407492c733f0,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40861
318,319,Resistors,Vishay,40861,MRS25000C2202F,MRS25000C2202FRP00,https://app.lcm-client.com/belimo/matching/40861/ef351458b324e0850a46407492c73735,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40861
319,320,Resistors,Vishay,47038,MBB02070C1103F,MBB02070C1103FRP00,https://app.lcm-client.com/belimo/matching/47038/ef351458b324e0850a46407492d84967,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47038
320,321,Resistors,Vishay,47355-05762,MRS25000C5762F,MRS25000C5762FRP00,https://app.lcm-client.com/belimo/matching/47355-05762/ef351458b324e0850a46407492dceb65,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-05762
321,322,Resistors,Vishay,47355-07503,MBB02070C7503F,MBB02070C7503FRP00,https://app.lcm-client.com/belimo/matching/47355-07503/ef351458b324e0850a46407492dd0a2c,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-07503
322,323,Resistors,Vishay,47355-07503,MRS25000C7503F,MRS25000C7503FRP00,https://app.lcm-client.com/belimo/matching/47355-07503/ef351458b324e0850a46407492dd1062,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-07503
323,324,Resistors,Vishay,47355-09102,MBB02070C9102F,MBB02070C9102FRP00,https://app.lcm-client.com/belimo/matching/47355-09102/ef351458b324e0850a46407492dd3bb8,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-09102
324,325,Resistors,Vishay,47355-09102,MRS25000C9102F,MRS25000C9102FRP00,https://app.lcm-client.com/belimo/matching/47355-09102/ef351458b324e0850a46407492dd4037,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-09102
325,326,Resistors,Vishay,47355-42200,MBB02070C2200F,MBB02070C2200FRP00,https://app.lcm-client.com/belimo/matching/47355-42200/ef351458b324e0850a46407492dd65ba,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-42200
326,327,Resistors,Vishay,47355-42200,MRS25000C2200F,MRS25000C2200FRP00,https://app.lcm-client.com/belimo/matching/47355-42200/ef351458b324e0850a46407492dd696b,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-42200
327,328,Resistors,Vishay,40617-02408,SMM02040C2408F,SMM02040C2408FB000,https://app.lcm-client.com/belimo/matching/40617-02408/ef351458b324e0850a46407492c0d2b0,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02408
328,329,Resistors,Vishay,40852,MBB02070C4702F,MBB02070C4702FRP00,https://app.lcm-client.com/belimo/matching/40852/ef351458b324e0850a46407492c6d60f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40852
329,330,Resistors,Vishay,40852,MRS25000C4702F,MRS25000C4702FRP00,https://app.lcm-client.com/belimo/matching/40852/ef351458b324e0850a46407492c6e1c7,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40852
330,331,Resistors,Vishay,40853,MBB02070C5902F,MBB02070C5902FRP00,https://app.lcm-client.com/belimo/matching/40853/ef351458b324e0850a46407492c703d9,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40853
331,332,Resistors,Vishay,40853,MRS25000C5902F,MRS25000C5902FRP00,https://app.lcm-client.com/belimo/matching/40853/ef351458b324e0850a46407492c70733,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40853
332,333,Resistors,Vishay,40860,MBB02070C3001F,MBB02070C3001FRP00,https://app.lcm-client.com/belimo/matching/40860/ef351458b324e0850a46407492c71d0c,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40860
333,334,Resistors,Vishay,40860,MRS25000C3001F,MRS25000C3001FRP00,https://app.lcm-client.com/belimo/matching/40860/ef351458b324e0850a46407492c72721,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40860
334,335,Resistors,Vishay,47355-44700,MRS25000C4700F,MRS25000C4700FRP00,https://app.lcm-client.com/belimo/matching/47355-44700/ef351458b324e0850a46407492dd925e,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-44700
335,336,Resistors,TT Electronics,40617-01204,WRM0204C1M2FI,WRM0204C-1M2FI,https://app.lcm-client.com/belimo/matching/40617-01204/a57dd45b8b8bfbbc6b72118464e1e61b,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01204
336,337,Resistors,TT Electronics,40617-01211,WRM0204C1K21FI,WRM0204C-470RFI,https://app.lcm-client.com/belimo/matching/40617-01211/a57dd45b8b8bfbbc6b72118464e2c13b,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01211
337,338,Resistors,TT Electronics,40617-01800,WRM0204C180RFI,WRM0204C180RFI,https://app.lcm-client.com/belimo/matching/40617-01800/a57dd45b8b8bfbbc6b72118464e475a3,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01800
338,339,Resistors,TT Electronics,40617-01801,WRM0204C1K8FI,WRM0204C-1K8FI,https://app.lcm-client.com/belimo/matching/40617-01801/a57dd45b8b8bfbbc6b72118464e4ef28,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01801
339,340,Resistors,TT Electronics,40617-03303,WRM0204C330KFI,WRM0204C-330KFI,https://app.lcm-client.com/belimo/matching/40617-03303/a57dd45b8b8bfbbc6b72118464e87aed,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03303
340,341,Resistors,TT Electronics,40617-04700,WRM0204C470RFI,WRM0204C-470RFI,https://app.lcm-client.com/belimo/matching/40617-04700/a57dd45b8b8bfbbc6b72118464ea09cb,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04700
341,342,Resistors,TT Electronics,40615-02002,PCF1206-R-20KB,PCF1206R-20KBT1 ,https://app.lcm-client.com/belimo/matching/40615-02002/c8cb570d5127ae96aaae8eee663f84a2,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02002
342,343,Resistors,TT Electronics,40615-02202,PCF1206-R-22KB,PCF1206R-22KBT1,https://app.lcm-client.com/belimo/matching/40615-02202/c8cb570d5127ae96aaae8eee663fadb4,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02202
343,344,Resistors,TT Electronics,40615-02372,PCF1206-R-56KB,PCF1206R-56KBT1,https://app.lcm-client.com/belimo/matching/40615-02202/c8cb570d5127ae96aaae8eee663fadb4,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02372
344,345,Resistors,TT Electronics,40615-02402,PCF1206-R-24KB,PCF1206R-24KBT1,https://app.lcm-client.com/belimo/matching/40615-02402/c8cb570d5127ae96aaae8eee664021c3,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02402
345,346,Resistors,TT Electronics,40615-02492,PCF1206-R-24K9B,PCF1206R-24K9BT1,https://app.lcm-client.com/belimo/matching/40615-02492/c8cb570d5127ae96aaae8eee66405af8,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02492
346,347,Resistors,TT Electronics,40615-02552,PCF1206-R-25K5B,PCF1206R-25K5BT1,https://app.lcm-client.com/belimo/matching/40615-02552/c8cb570d5127ae96aaae8eee664087ff,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02552
347,348,Resistors,TT Electronics,40615-02702,PCF1206-R-27KB,PCF1206R-27KBT1,https://app.lcm-client.com/belimo/matching/40615-02702/c8cb570d5127ae96aaae8eee6640c2eb,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02702
348,349,Resistors,TT Electronics,40615-03922,PCF1206-R-39K2B,PCF1206R-39K2BT1,https://app.lcm-client.com/belimo/matching/40615-03922/c8cb570d5127ae96aaae8eee6640ff82,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-03922
349,350,Resistors,TT Electronics,40615-06812,PCF1206-R-68K1B,PCF1206R-68K1BT1,https://app.lcm-client.com/belimo/matching/40615-06812/c8cb570d5127ae96aaae8eee6641618e,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-06812
350,351,Resistors,TT Electronics,40615-06982,PCF1206-R-69K8B,PCF1206R-69K8BT1,https://app.lcm-client.com/belimo/matching/40615-06982/c8cb570d5127ae96aaae8eee66419452,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-06982
351,352,Resistors,TT Electronics,40615-08201,PCF1206-R-8K2B,PCF1206R-8K2BT1,https://app.lcm-client.com/belimo/matching/40615-08201/c8cb570d5127ae96aaae8eee6641c3da,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-08201
352,353,Resistors,TT Electronics,40617-01001,WRM0204C1KFI,WRM0204C-1K0FI,https://app.lcm-client.com/belimo/matching/40617-01001/c8cb570d5127ae96aaae8eee66425552,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01001
353,354,Resistors,TT Electronics,40617-04701,WRM0204C4K7FI,WRM0204C-4K7FI,https://app.lcm-client.com/belimo/matching/40617-04701/c8cb570d5127ae96aaae8eee6647ff02,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04701
354,355,Resistors,TT Electronics,40617-04992,WRM0204C49K9FI,WRM0204C-49K9FI,https://app.lcm-client.com/belimo/matching/40617-04992/c8cb570d5127ae96aaae8eee6648bd7f,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04992
355,356,Resistors,TT Electronics,40617-05109,WRM0204C51RFI,WRM0204C-51RFI,https://app.lcm-client.com/belimo/matching/40617-05109/c8cb570d5127ae96aaae8eee664944ae,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-05109
356,357,Resistors,TT Electronics,40617-05601,WRM0204C5K6FI,WRM0204C-5K6FI,https://app.lcm-client.com/belimo/matching/40617-05601/c8cb570d5127ae96aaae8eee6649b46b,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-05601
357,358,Resistors,TT Electronics,40617-06800,WRM0204C680RFI,WRM0204C-680RFI,https://app.lcm-client.com/belimo/matching/40617-06800/c8cb570d5127ae96aaae8eee664a97c6,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06800
358,359,Resistors,TT Electronics,40617-06801,WRM0204C6K8FI,WRM0204C-6K8FI,https://app.lcm-client.com/belimo/matching/40617-06801/c8cb570d5127ae96aaae8eee664b8a2f,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06801
359,360,Resistors,TT Electronics,40617-07502,WRM0204C75KFI,WRM0204C-75KFI,https://app.lcm-client.com/belimo/matching/40617-07502/c8cb570d5127ae96aaae8eee664c65a4,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-07502
360,361,Resistors,TT Electronics,40602-01001,WRM0207HPC-1K0F,WRM0207HPC-1K0FT2,https://app.lcm-client.com/belimo/matching/40602-01001/ef351458b324e0850a464074929fc757,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01001
361,362,Resistors,TT Electronics,40602-01002,WRM0207HPC-10KF,WRM0207HPC-10KFT2,https://app.lcm-client.com/belimo/matching/40602-01002/ef351458b324e0850a46407492a0014a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01002
362,363,Resistors,TT Electronics,40602-01004,WRM0207HPC-1M0F,WRM0207HPC-1M0FT2,https://app.lcm-client.com/belimo/matching/40602-01004/ef351458b324e0850a46407492a0258e,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01004
363,364,Resistors,TT Electronics,40602-01100,WRM0207HPC-110RF,WRM0207HPC-110RFT2,https://app.lcm-client.com/belimo/matching/40602-01100/ef351458b324e0850a46407492a0d9d9,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01100
364,365,Resistors,TT Electronics,40602-01501,WRM0207HPC-1K5F,WRM0207HPC-1K5FT2,https://app.lcm-client.com/belimo/matching/40602-01501/ef351458b324e0850a46407492a118c9,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01501
365,366,Resistors,TT Electronics,40602-01503,WRM0207HPC-150KF,WRM0207HPC-150KFT2,https://app.lcm-client.com/belimo/matching/40602-01503/ef351458b324e0850a46407492a15498,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01503
366,367,Resistors,TT Electronics,40602-01801,WRM0207HPC-1K8F,WRM0207HPC-1K8FT2,https://app.lcm-client.com/belimo/matching/40602-01801/ef351458b324e0850a46407492a19513,ok,Automotive,Yes,y,Requires Update,https://app.lcm-client.com/belimo/part/40602-01801
367,368,Resistors,TT Electronics,40602-02201,WRM0207HPC-2K2F,WRM0207HPC-2K2FT2,https://app.lcm-client.com/belimo/matching/40602-02201/ef351458b324e0850a46407492a1c7a2,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02201
368,369,Resistors,TT Electronics,40602-02203,WRM0207HPC-220KF,WRM0207HPC-220KFT2,https://app.lcm-client.com/belimo/matching/40602-02203/ef351458b324e0850a46407492a208f7,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02203
369,370,Resistors,TT Electronics,40602-02401,WRM0207HPC-2K4F,WRM0207HPC-2K4FT2,https://app.lcm-client.com/belimo/matching/40602-02401/ef351458b324e0850a46407492a27710,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02401
370,371,Resistors,TT Electronics,40602-02402,WRM0207HPC-24KF,WRM0207HPC-24KFT2,https://app.lcm-client.com/belimo/matching/40602-02402/ef351458b324e0850a46407492a2b96e,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02402
371,372,Resistors,TT Electronics,40602-02403,WRM0207HPC-240KF,WRM0207HPC-240KFT2,https://app.lcm-client.com/belimo/matching/40602-02403/ef351458b324e0850a46407492a2ea6d,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02403
372,373,Resistors,TT Electronics,40602-02491,WRM0207HPC-2K49F,WRM0207HPC-2K49FT2,https://app.lcm-client.com/belimo/matching/40602-02491/ef351458b324e0850a46407492a30f58,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02491
373,374,Resistors,TT Electronics,40602-02703,WRM0207HPC-270KF,WRM0207HPC-270KFT2,https://app.lcm-client.com/belimo/matching/40602-02703/ef351458b324e0850a46407492a35ee4,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02703
374,375,Resistors,TT Electronics,40602-03000,WRM0207HPC-300RF,WRM0207HPC-300RFT2,https://app.lcm-client.com/belimo/matching/40602-03000/ef351458b324e0850a46407492a39ce1,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-03000
375,376,Resistors,TT Electronics,40602-03303,WRM0207HPC-330KF,WRM0207HPC-330KFT2,https://app.lcm-client.com/belimo/matching/40602-03303/ef351458b324e0850a46407492a3cdcf,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-03303
376,377,Resistors,TT Electronics,40602-04700,WRM0207HPC-470RF,WRM0207HPC-470RFT2,https://app.lcm-client.com/belimo/matching/40602-04700/ef351458b324e0850a46407492a51cfd,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04700
377,378,Resistors,TT Electronics,40602-04701,WRM0207HPC-4K7F,WRM0207HPC-4K7FT2,https://app.lcm-client.com/belimo/matching/40602-04701/ef351458b324e0850a46407492a54e73,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04701
378,379,Resistors,TT Electronics,40602-04702,WRM0207HPC-47KF,WRM0207HPC-47KFT2,https://app.lcm-client.com/belimo/matching/40602-04702/ef351458b324e0850a46407492a58a5c,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04702
379,380,Resistors,TT Electronics,40602-04703,WRM0207HPC-470KF,WRM0207HPC-470KFT2,https://app.lcm-client.com/belimo/matching/40602-04703/ef351458b324e0850a46407492a5b923,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04703
380,381,Resistors,TT Electronics,40602-05100,WRM0207HPC-510RF,WRM0207HPC-510RFT2,https://app.lcm-client.com/belimo/matching/40602-05100/ef351458b324e0850a46407492a6084d,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05100
381,382,Resistors,TT Electronics,40602-05603,WRM0207HPC-560KF,WRM0207HPC-560KFT2,https://app.lcm-client.com/belimo/matching/40602-05603/ef351458b324e0850a46407492a64c72,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05603
382,383,Resistors,TT Electronics,40602-06209,WRM0207HPC-62RF,WRM0207HPC-62RFT2,https://app.lcm-client.com/belimo/matching/40602-06209/ef351458b324e0850a46407492a68b65,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-06209
383,384,Resistors,TT Electronics,40602-07502,WRM0207HPC-75KF,WRM0207HPC-75KFT2,https://app.lcm-client.com/belimo/matching/40602-07502/ef351458b324e0850a46407492a6d6ab,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-07502
384,385,Resistors,TT Electronics,40602-08063,WRM0207HPC-806KF,WRM0207HPC-806KFT2,https://app.lcm-client.com/belimo/matching/40602-08063/ef351458b324e0850a46407492a71c92,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08063
385,386,Resistors,TT Electronics,40602-08202,WRM0207HPC-82KF,WRM0207HPC-82KFT2,https://app.lcm-client.com/belimo/matching/40602-08202/ef351458b324e0850a46407492a75ccf,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08202
386,387,Resistors,TT Electronics,40602-09100,WRM0207HPC-910RF,WRM0207HPC-910RFT2,https://app.lcm-client.com/belimo/matching/40602-09100/ef351458b324e0850a46407492a79fec,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-09100
387,388,Resistors,TT Electronics,40615-01002,PCF1206-R-10KB,PCF1206R-10KBT1,https://app.lcm-client.com/belimo/matching/40615-01002/ef351458b324e0850a46407492b6a626,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-01002
388,389,Resistors,TT Electronics,40615-01022,PCF1206-R-10K2B,PCF1206R-10K2BT1,https://app.lcm-client.com/belimo/matching/40615-01022/ef351458b324e0850a46407492b6e25d,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-01022
389,390,Resistors,TT Electronics,40615-01213,PCF1206-R-121KB,PCF1206R-121KBT1,https://app.lcm-client.com/belimo/matching/40615-01213/ef351458b324e0850a46407492b72657,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-01213
390,391,Resistors,TT Electronics,40615-01822,PCF1206-R-18K2B,PCF1206R-18K2BT1,https://app.lcm-client.com/belimo/matching/40615-01822/ef351458b324e0850a46407492b751d0,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-01822
391,392,Resistors,TT Electronics,40617-01002,WRM0204C10KFI,WRM0204C-10KFI,https://app.lcm-client.com/belimo/matching/40617-01002/ef351458b324e0850a46407492b965cd,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01002
392,393,Resistors,TT Electronics,40617-01003,WRM0204C100KFI,WRM0204C-100KFI,https://app.lcm-client.com/belimo/matching/40617-01003/ef351458b324e0850a46407492b9d08e,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01003
393,394,Resistors,TT Electronics,40617-01108,WRM0204C1R1FI,WRM0204C-1R1FI,https://app.lcm-client.com/belimo/matching/40617-01108/ef351458b324e0850a46407492bb284b,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01108
394,395,Resistors,TT Electronics,40617-01201,WRM0204C1K2FI,WRM0204C-1K2FI,https://app.lcm-client.com/belimo/matching/40617-01201/ef351458b324e0850a46407492bb9190,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01201
395,396,Resistors,TT Electronics,40617-01202,WRM0204C12KFI,WRM0204C-12KFI,https://app.lcm-client.com/belimo/matching/40617-01202/ef351458b324e0850a46407492bbe280,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01202
396,397,Resistors,TT Electronics,40617-02002,WRM0204C20KFI,WRM0204C-20KFI,https://app.lcm-client.com/belimo/matching/40617-02002/ef351458b324e0850a46407492beb216,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02002
397,398,Resistors,TT Electronics,40617-02201,WRM0204C2K2FI,WRM0204C-2K2FI,https://app.lcm-client.com/belimo/matching/40617-02201/ef351458b324e0850a46407492bf96d3,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02201
398,399,Resistors,TT Electronics,40617-02202,WRM0204C22KFI,WRM0204C-22KFI,https://app.lcm-client.com/belimo/matching/40617-02202/ef351458b324e0850a46407492c0070f,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02202
399,400,Resistors,TT Electronics,40617-02402,WRM0204C24KFI,WRM0204C-24KFI,https://app.lcm-client.com/belimo/matching/40617-02402/ef351458b324e0850a46407492c077bb,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02402
400,401,Resistors,TT Electronics,41746-02007,LR2512-R20F,LR2512-R20FT1,https://app.lcm-client.com/belimo/matching/41746-02007/ef351458b324e0850a46407492cb1266,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41746-02007
401,402,Resistors,TT Electronics,41801-00057,LRMAP2512-R005F,LRMAP2512-R005FT4,https://app.lcm-client.com/belimo/matching/41801-00057/ef351458b324e0850a46407492cc617c,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/41801-00057
402,403,Resistors,TT Electronics,41808-01008,CHP1/8501R00J,CHP1/8501R00JLF,https://app.lcm-client.com/belimo/matching/41808-01008/ef351458b324e0850a46407492cc74b7,ok,STD,Yes,y,Obsolete,https://app.lcm-client.com/belimo/part/41808-01008
403,404,Resistors,Panasonic,41911-03001,ERJ2RKF3001,ERJ2RKF3001X,https://app.lcm-client.com/belimo/matching/41911-03001/01c0aaf7f54e36ff3a021a81ca303251,ok,Automotive,Exption,n,,
404,405,Resistors,Panasonic,41911-03301,ERJ2RKF3301,ERJ2RKF3301X,https://app.lcm-client.com/belimo/matching/41911-03301/01c0aaf7f54e36ff3a021a81ca30648f,ok,Automotive,Exption,n,,
405,406,Resistors,Panasonic,41911-05600,ERJ2RKF5600,ERJ2RKF5600X,https://app.lcm-client.com/belimo/matching/41911-05600/215374c1de05d3324b68f967dc5023c8,ok,Automotive,Exption,n,,
406,407,Resistors,Panasonic,41911-07502,ERJ2RKF7502,ERJ2RKF7502X,https://app.lcm-client.com/belimo/matching/41911-07502/215374c1de05d3324b68f967dc50b5a8,ok,Automotive,Exption,n,,
407,408,Resistors,Panasonic,41911-08203,ERJ2RKF8203,ERJ2RKF8203X,https://app.lcm-client.com/belimo/matching/41911-08203/215374c1de05d3324b68f967dc50e5fb,ok,Automotive,Exption,n,,
408,409,Resistors,Panasonic,41911-01103,ERJ2RKF1103,ERJ2RKF1103X,https://app.lcm-client.com/belimo/matching/41911-01103/46de94ed90f9f5ccd2b17e508cfa275c,ok,Automotive,Exption,n,,
409,410,Resistors,Panasonic,41911-01200,ERJ2RKF1200,ERJ2RKF1200X,https://app.lcm-client.com/belimo/matching/41911-01200/46de94ed90f9f5ccd2b17e508cfa4588,ok,Automotive,Exption,n,,
410,411,Resistors,Panasonic,41911-01302,ERJ2RKF1302,ERJ2RKF1302X,https://app.lcm-client.com/belimo/matching/41911-01302/46de94ed90f9f5ccd2b17e508cfa5fef,ok,Automotive,Exption,n,,
411,412,Resistors,Panasonic,41911-01303,ERJ2RKF1303,ERJ2RKF1303X,https://app.lcm-client.com/belimo/matching/41911-01303/46de94ed90f9f5ccd2b17e508cfa88df,ok,Automotive,Exption,n,,
412,413,Resistors,Panasonic,40613-01001,ERA6AEB102,ERA6AEB102V,https://app.lcm-client.com/belimo/matching/40613-01001/a57dd45b8b8bfbbc6b72118464d72071,ok,Automotive,Exption,n,,
413,414,Resistors,Panasonic,40613-01002,ERA6AEB103,ERA6AEB103V,https://app.lcm-client.com/belimo/matching/40613-01002/a57dd45b8b8bfbbc6b72118464d74c0c,ok,Automotive,Exption,n,,
414,415,Resistors,Panasonic,40613-01152,ERA6AEB1153,ERA6AEB1153V,https://app.lcm-client.com/belimo/matching/40613-01152/a57dd45b8b8bfbbc6b72118464d773c4,ok,Automotive,Exption,n,,
415,416,Resistors,Panasonic,40613-01271,ERA6AEB1271,ERA6AEB1271V,https://app.lcm-client.com/belimo/matching/40613-01271/a57dd45b8b8bfbbc6b72118464d7a262,ok,Automotive,Exption,n,,
416,417,Resistors,Panasonic,40613-01502,ERA6AEB1502,ERA6AEB1502V,https://app.lcm-client.com/belimo/matching/40613-01502/a57dd45b8b8bfbbc6b72118464d7ef05,ok,Automotive,Exption,n,,
417,418,Resistors,Panasonic,40613-01503,ERA6AEB1503,ERA6AEB1503V,https://app.lcm-client.com/belimo/matching/40613-01503/a57dd45b8b8bfbbc6b72118464d802b3,ok,Automotive,Exption,n,,
418,419,Resistors,Panasonic,40613-01602,ERA6AEB163,ERA6AEB163V,https://app.lcm-client.com/belimo/matching/40613-01602/a57dd45b8b8bfbbc6b72118464d8202c,ok,Automotive,Exption,n,,
419,420,Resistors,Panasonic,40613-02001,ERA6AEB2001,ERA6AEB2001V,https://app.lcm-client.com/belimo/matching/40613-02001/a57dd45b8b8bfbbc6b72118464d85572,ok,Automotive,Exption,n,,
420,421,Resistors,Panasonic,40613-02002,ERA6AEB2002,ERA6AEB2002V,https://app.lcm-client.com/belimo/matching/40613-02002/a57dd45b8b8bfbbc6b72118464d8777d,ok,Automotive,Exption,n,,
421,422,Resistors,Panasonic,40613-02432,ERA6AEB2431,ERA6AEB2431V,https://app.lcm-client.com/belimo/matching/40613-02432/a57dd45b8b8bfbbc6b72118464d8af94,ok,Automotive,Exption,n,,
422,423,Resistors,Panasonic,40613-03321,ERA6AEB3321,ERA6AEB3321V,https://app.lcm-client.com/belimo/matching/40613-03321/a57dd45b8b8bfbbc6b72118464d8e08b,ok,Automotive,Exption,n,,
423,424,Resistors,Panasonic,40613-03601,ERA6AEB362,ERA6AEB362V,https://app.lcm-client.com/belimo/matching/40613-03601/a57dd45b8b8bfbbc6b72118464d8fefd,ok,Automotive,Exption,n,,
424,425,Resistors,Panasonic,40613-04022,ERA6AEB4022,ERA6AEB4022V,https://app.lcm-client.com/belimo/matching/40613-04022/a57dd45b8b8bfbbc6b72118464da2fbb,ok,Automotive,Exption,n,,
425,426,Resistors,Panasonic,40613-06802,ERA6AEB683,ERA6AEB683V,https://app.lcm-client.com/belimo/matching/40613-06802/a57dd45b8b8bfbbc6b72118464da4c84,ok,Automotive,Exption,n,,
426,427,Resistors,Panasonic,40613-07871,ERA6AEB7871,ERA6AEB7871V,https://app.lcm-client.com/belimo/matching/40613-07871/a57dd45b8b8bfbbc6b72118464da5af6,ok,Automotive,Exption,n,,
427,428,Resistors,Panasonic,40613-09762,ERA6AEB9762,ERA6AEB9762V,https://app.lcm-client.com/belimo/matching/40613-09762/a57dd45b8b8bfbbc6b72118464da891e,ok,Automotive,Exption,n,,
428,429,Resistors,Panasonic,41911-01003,ERJ2RKF1003,ERJ2RKF1003X,https://app.lcm-client.com/belimo/matching/41911-01003/a57dd45b8b8bfbbc6b72118464f07eb4,ok,Automotive,Exption,n,,
429,430,Resistors,Panasonic,41911-01102,ERJ2RKF1102,ERJ2RKF1102X,https://app.lcm-client.com/belimo/matching/41911-01102/a57dd45b8b8bfbbc6b72118464f0d155,ok,Automotive,Exption,n,,
430,431,Resistors,Panasonic,41911-01202,ERJ2RKF1202,ERJ2RKF1202X,https://app.lcm-client.com/belimo/matching/41911-01202/a57dd45b8b8bfbbc6b72118464f1003f,ok,Automotive,Exption,n,,
431,432,Resistors,Panasonic,41911-01203,ERJ2RKF1203,ERJ2RKF1203X,https://app.lcm-client.com/belimo/matching/41911-01203/a57dd45b8b8bfbbc6b72118464f11b46,ok,Automotive,Exption,n,,
432,433,Resistors,Panasonic,41911-01402,ERJ2RKF1402,ERJ2RKF1402X,https://app.lcm-client.com/belimo/matching/41911-01402/a57dd45b8b8bfbbc6b72118464f1429e,ok,Automotive,Exption,n,,
433,434,Resistors,Panasonic,41911-01502,ERJ2RKF1502,ERJ2RKF1502X,https://app.lcm-client.com/belimo/matching/41911-01502/a57dd45b8b8bfbbc6b72118464f179f5,ok,Automotive,Exption,n,,
434,435,Resistors,Panasonic,41911-01503,ERJ2RKF1503,ERJ2RKF1503X,https://app.lcm-client.com/belimo/matching/41911-01503/a57dd45b8b8bfbbc6b72118464f1b159,ok,Automotive,Exption,n,,
435,436,Resistors,Panasonic,41911-01802,ERJ2RKF1802,ERJ2RKF1802X,https://app.lcm-client.com/belimo/matching/41911-01802/a57dd45b8b8bfbbc6b72118464f1e1f1,ok,Automotive,Exption,n,,
436,437,Resistors,Panasonic,41911-01803,ERJ2RKF1803,ERJ2RKF1803X,https://app.lcm-client.com/belimo/matching/41911-01803/a57dd45b8b8bfbbc6b72118464f210cd,ok,Automotive,Exption,n,,
437,438,Resistors,Panasonic,41911-02003,ERJ2RKF2003,ERJ2RKF2003X,https://app.lcm-client.com/belimo/matching/41911-02003/a57dd45b8b8bfbbc6b72118464f2425a,ok,Automotive,Exption,n,,
438,439,Resistors,Panasonic,41911-02200,ERJ2RKF2200,ERJ2RKF2200X,https://app.lcm-client.com/belimo/matching/41911-02200/a57dd45b8b8bfbbc6b72118464f2631d,ok,Automotive,Exption,n,,
439,440,Resistors,Panasonic,41911-02201,ERJ2RKF2201,ERJ2RKF2201X,https://app.lcm-client.com/belimo/matching/41911-02201/a57dd45b8b8bfbbc6b72118464f28fbc,ok,Automotive,Exption,n,,
440,441,Resistors,Panasonic,41911-02202,ERJ2RKF2202,ERJ2RKF2202X,https://app.lcm-client.com/belimo/matching/41911-02202/a57dd45b8b8bfbbc6b72118464f2ad6b,ok,Automotive,Exption,n,,
441,442,Resistors,Panasonic,41911-02203,ERJ2RKF2203,ERJ2RKF2203X,https://app.lcm-client.com/belimo/matching/41911-02203/a57dd45b8b8bfbbc6b72118464f2d9da,ok,Automotive,Exption,n,,
442,443,Resistors,Panasonic,47690-00001,ERJ-6ENF1003V,ERJ6ENF1003V,https://app.lcm-client.com/belimo/matching/47690-00001/a57dd45b8b8bfbbc6b72118464fe67b5,ok,Automotive,Exption,n,,
443,444,Resistors,Panasonic,47692-00001,ERJ-6ENF1783V,ERJ6ENF1783V,https://app.lcm-client.com/belimo/matching/47692-00001/a57dd45b8b8bfbbc6b72118464fe776d,ok,Automotive,Exption,n,,
444,445,Resistors,Panasonic,47694-00001,ERJ-6ENF4753V,ERJ6ENF4753V,https://app.lcm-client.com/belimo/matching/47694-00001/a57dd45b8b8bfbbc6b72118464fe8343,ok,Automotive,Exption,n,,
445,446,Resistors,Panasonic,47695-00001,ERJ-6ENF6493V,ERJ6ENF6493V,https://app.lcm-client.com/belimo/matching/47695-00001/a57dd45b8b8bfbbc6b72118464fe92ca,ok,Automotive,Exption,n,,
446,447,Resistors,Panasonic,47700-00001,ERJ-6ENF1000V,ERJ6ENF1000V,https://app.lcm-client.com/belimo/matching/47700-00001/a57dd45b8b8bfbbc6b72118464fee6c1,ok,Automotive,Exption,n,,
447,448,Resistors,Panasonic,47703-00001,ERJ-6ENF9090V,ERJ6ENF9090V,https://app.lcm-client.com/belimo/matching/47703-00001/a57dd45b8b8bfbbc6b72118464ff302b,ok,Automotive,Exption,n,,
448,449,Resistors,Panasonic,47704-00001,ERJ-8ENF1001V,ERJ8ENF1001V,https://app.lcm-client.com/belimo/matching/47704-00001/a57dd45b8b8bfbbc6b72118464ff3d4c,ok,Automotive,Exption,y,NRND,
449,450,Resistors,Panasonic,47716-00001,ERJ-8ENF62R0V,ERJ8ENF62R0V,https://app.lcm-client.com/belimo/matching/47716-00001/a57dd45b8b8bfbbc6b72118464ffbddb,ok,Automotive,Exption,y,NRND,
450,451,Resistors,Panasonic,47720-00001,ERJ-8ENF4990V,ERJ8ENF4990V,https://app.lcm-client.com/belimo/matching/47720-00001/a57dd45b8b8bfbbc6b72118464ffd9f2,ok,Automotive,Exption,y,NRND,
451,452,Resistors,Panasonic,41911-02400,ERJ2RKF2400,ERJ2RKF2400x,https://app.lcm-client.com/belimo/matching/41911-02400/c8cb570d5127ae96aaae8eee6653b5ee,ok,Automotive,Exption,n,,
452,453,Resistors,Panasonic,41911-02402,ERJ2RKF2402,ERJ2RKF2402X,https://app.lcm-client.com/belimo/matching/41911-02402/c8cb570d5127ae96aaae8eee6653e56f,ok,Automotive,Exption,n,,
453,454,Resistors,Panasonic,41911-02701,ERJ2RKF2701,ERJ2RKF2701X,https://app.lcm-client.com/belimo/matching/41911-02701/c8cb570d5127ae96aaae8eee66541a81,ok,Automotive,Exption,n,,
454,455,Resistors,Panasonic,41911-02702,ERJ2RKF2702,ERJ2RKF2702X,https://app.lcm-client.com/belimo/matching/41911-02702/c8cb570d5127ae96aaae8eee66543ebe,ok,Automotive,Exption,n,,
455,456,Resistors,Panasonic,41911-03002,ERJ2RKF3002,ERJ2RKF3002X,https://app.lcm-client.com/belimo/matching/41911-03002/c8cb570d5127ae96aaae8eee6654c2de,ok,Automotive,Exption,n,,
456,457,Resistors,Panasonic,41911-03003,ERJ2RKF3003,ERJ2RKF3003X,https://app.lcm-client.com/belimo/matching/41911-03003/c8cb570d5127ae96aaae8eee6655059a,ok,Automotive,Exption,n,,
457,458,Resistors,Panasonic,41911-03300,ERJ2RKF3300,ERJ2RKF3300X,https://app.lcm-client.com/belimo/matching/41911-03300/c8cb570d5127ae96aaae8eee66553a8c,ok,Automotive,Exption,n,,
458,459,Resistors,Panasonic,41911-03302,ERJ2RKF3302,ERJ2RKF3302X,https://app.lcm-client.com/belimo/matching/41911-03302/c8cb570d5127ae96aaae8eee66555ae8,ok,Automotive,Exption,n,,
459,460,Resistors,Panasonic,41911-03303,ERJ2RKF3303,ERJ2RKF3303X,https://app.lcm-client.com/belimo/matching/41911-03303/c8cb570d5127ae96aaae8eee665598e9,ok,Automotive,Exption,n,,
460,461,Resistors,Panasonic,41911-03900,ERJ2RKF3900,ERJ2RKF3900X,https://app.lcm-client.com/belimo/matching/41911-03900/c8cb570d5127ae96aaae8eee6655be39,ok,Automotive,Exption,n,,
461,462,Resistors,Panasonic,41911-04302,ERJ2RKF4302,ERJ2RKF4302X,https://app.lcm-client.com/belimo/matching/41911-04302/c8cb570d5127ae96aaae8eee66560497,ok,Automotive,Exption,n,,
462,463,Resistors,Panasonic,41911-04701,ERJ2RKF4703,ERJ2RKF4703X,https://app.lcm-client.com/belimo/matching/41911-04701/c8cb570d5127ae96aaae8eee66567b38,ok,Automotive,Exption,n,,
463,464,Resistors,Panasonic,41911-08872,ERJ2RKF8872,ERJ2RKF8872X,https://app.lcm-client.com/belimo/matching/41911-08872/c8cb570d5127ae96aaae8eee6658f0ba,ok,Automotive,Exption,n,,
464,465,Resistors,Panasonic,42175-03602,ERJ2RKF3602,ERJ2RKF3602X,https://app.lcm-client.com/belimo/matching/42175-03602/c8cb570d5127ae96aaae8eee6659b0b1,ok,Automotive,Exption,n,,
465,466,Resistors,Panasonic,42175-08201,ERJ2RKF8201,ERJ2RKF8201X,https://app.lcm-client.com/belimo/matching/42175-08201/c8cb570d5127ae96aaae8eee6659c7f1,ok,Automotive,Exption,n,,
466,467,Resistors,Panasonic,40412-02701,ERJ-U03D2701V,ERJU03D2701V,https://app.lcm-client.com/belimo/matching/40412-02701/ef351458b324e0850a464074929e2bee,ok,Automotive,Exption,n,,
467,468,Resistors,Panasonic,40412-02701,ERJ-U3RD2701V,ERJU3RD2701V,https://app.lcm-client.com/belimo/matching/40412-02701/ef351458b324e0850a464074929e3613,ok,Automotive,Exption,n,,
468,469,Resistors,Panasonic,41861-01003,ERA2AEB104,ERA2AEB104X,https://app.lcm-client.com/belimo/matching/41861-01003/ef351458b324e0850a46407492ccb156,ok,Automotive,Exption,n,,
469,470,Resistors,Panasonic,41861-02001,ERA2AEB202,ERA2AEB202X,https://app.lcm-client.com/belimo/matching/41861-02001/ef351458b324e0850a46407492ccefa4,ok,Automotive,Exption,n,,
470,471,Resistors,Panasonic,41861-02702,ERA2AEB273,ERA2AEB273X,https://app.lcm-client.com/belimo/matching/41861-02702/ef351458b324e0850a46407492cd4c96,ok,Automotive,Exption,n,,
471,472,Resistors,Panasonic,41861-04702,ERJ2RKF4702,ERJ2RKF4702X,https://app.lcm-client.com/belimo/matching/41861-04702/ef351458b324e0850a46407492cd780d,ok,Automotive,Exption,n,,
472,473,Resistors,Panasonic,41861-06802,ERA2AEB683,ERA2AEB683X,https://app.lcm-client.com/belimo/matching/41861-06802/ef351458b324e0850a46407492cd95c0,ok,Automotive,Exption,n,,
473,474,Resistors,Panasonic,41911-01001,ERJ2RKF1001,ERJ2RKF1001X,https://app.lcm-client.com/belimo/matching/41911-01001/ef351458b324e0850a46407492ced498,ok,Automotive,Exption,n,,
474,475,Resistors,Panasonic,41911-05102,ERJ2RKF5102,ERJ2RKF5102X,https://app.lcm-client.com/belimo/matching/41911-05102/ef351458b324e0850a46407492d19988,ok,Automotive,Exption,n,,
475,476,Resistors,Panasonic,41911-05103,ERJ2RKF5103,ERJ2RKF5103X,https://app.lcm-client.com/belimo/matching/41911-05103/ef351458b324e0850a46407492d1cc89,ok,Automotive,Exption,n,,
476,477,Resistors,Panasonic,41911-05603,ERJ2RKF5603,ERJ2RKF5603X,https://app.lcm-client.com/belimo/matching/41911-05603/ef351458b324e0850a46407492d223fb,ok,Automotive,Exption,n,,
477,478,Resistors,Panasonic,41911-06201,ERJ2RKF6201,ERJ2RKF6201X,https://app.lcm-client.com/belimo/matching/41911-06201/ef351458b324e0850a46407492d2c3d1,ok,Automotive,Exption,n,,
478,479,Resistors,Panasonic,41911-06202,ERJ2RKF6202,ERJ2RKF6202X,https://app.lcm-client.com/belimo/matching/41911-06202/ef351458b324e0850a46407492d2fe25,ok,Automotive,Exption,n,,
479,480,Resistors,Panasonic,41911-06802,ERJ2RKF6802,ERJ2RKF6802X,https://app.lcm-client.com/belimo/matching/41911-06802/ef351458b324e0850a46407492d330e8,ok,Automotive,Exption,n,,
480,481,Resistors,Panasonic,41911-06803,ERJ2RKF6803,ERJ2RKF6803X,https://app.lcm-client.com/belimo/matching/41911-06803/ef351458b324e0850a46407492d3643a,ok,Automotive,Exption,n,,
481,482,Resistors,Panasonic,41911-06809,ERJ2RKF68R0,ERJ2RKF68R0X,https://app.lcm-client.com/belimo/matching/41911-06809/ef351458b324e0850a46407492d3ab42,ok,Automotive,Exption,n,,
482,483,Resistors,Panasonic,47673-00001,ERJ-6ENF1151V,ERJ6ENF1151V,https://app.lcm-client.com/belimo/matching/47673-00001/ef351458b324e0850a46407492de2ab2,ok,Automotive,Exption,n,,
483,484,Resistors,Panasonic,47678-00001,ERJ-6ENF4301V,ERJ6ENF4301V,https://app.lcm-client.com/belimo/matching/47678-00001/ef351458b324e0850a46407492de700b,ok,Automotive,Exption,n,,
484,485,Resistors,Panasonic,47682-00001,ERJ-6ENF1912V,ERJ6ENF1912V,https://app.lcm-client.com/belimo/matching/47682-00001/ef351458b324e0850a46407492decfd2,ok,Automotive,Exption,n,,
485,486,Resistors,TDK,40138,B57620C5102J,B57620C5102J062,https://app.lcm-client.com/belimo/matching/40138/ef351458b324e0850a464074929dd12c,ok,STD,Yes,y,Requires Update,https://app.lcm-client.com/belimo/part/40138

@ -0,0 +1,487 @@
,Pos,Category,Manufacturer,CPN,MPN,MPN_Matched,Link,Status,State,ROHS,report_belimo,Comment,CPN_Link
0,1,Resistors,Vishay,41749-01509,CMB02070X1509,CMB02070X1509JB200 ,https://app.lcm-client.com/belimo/matching/41749-01509/46de94ed90f9f5ccd2b17e508cf7765a,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/41749-01509
1,2,Resistors,Vishay,40613-01001,MCU08050D1001B,MCU08050D1001BP500,https://app.lcm-client.com/belimo/matching/40613-01001/a57dd45b8b8bfbbc6b72118464d732a4,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01001
2,3,Resistors,Vishay,40613-01002,MCU08050D1002B,MCU08050D1002BP500,https://app.lcm-client.com/belimo/matching/40613-01002/a57dd45b8b8bfbbc6b72118464d75801,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01002
3,4,Resistors,Vishay,40613-01152,MCU08050D1152B,MCU08050D1152BP500,https://app.lcm-client.com/belimo/matching/40613-01152/a57dd45b8b8bfbbc6b72118464d7859d,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01152
4,5,Resistors,Vishay,40613-01271,MCU08050D1271B,MCU08050D1271BP500,https://app.lcm-client.com/belimo/matching/40613-01271/a57dd45b8b8bfbbc6b72118464d7c5d9,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01271
5,6,Resistors,Vishay,40613-01300,MCU08050D1300B,MCU08050D1300BP500,https://app.lcm-client.com/belimo/matching/40613-01300/a57dd45b8b8bfbbc6b72118464d7dde1,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01300
6,7,Resistors,Vishay,40613-01502,MCU08050D1502B,MCU08050D1502BP500,https://app.lcm-client.com/belimo/matching/40613-01502/a57dd45b8b8bfbbc6b72118464d7f9ab,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01502
7,8,Resistors,Vishay,40613-01503,MCU08050D1503B,MCU08050D1503BP500,https://app.lcm-client.com/belimo/matching/40613-01503/a57dd45b8b8bfbbc6b72118464d80785,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01503
8,9,Resistors,Vishay,40613-01602,MCU08050D1602B,MCU08050D1602BP500,https://app.lcm-client.com/belimo/matching/40613-01602/a57dd45b8b8bfbbc6b72118464d82cc5,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01602
9,10,Resistors,Vishay,40613-02001,MCU08050D2001B,MCU08050D2001BP500,https://app.lcm-client.com/belimo/matching/40613-02001/a57dd45b8b8bfbbc6b72118464d863d6,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-02001
10,11,Resistors,Vishay,40617-01208,SMM02040C1208F,SMM02040C1208FB300,https://app.lcm-client.com/belimo/matching/40617-01208/a57dd45b8b8bfbbc6b72118464e27bef,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01208
11,12,Resistors,Vishay,40617-01208,MMA02040C1211F,MMA02040C1211FB300,https://app.lcm-client.com/belimo/matching/40617-01211/a57dd45b8b8bfbbc6b72118464e2d494,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01208
12,13,Resistors,Vishay, 40617-01211,SMM02040C1211F,SMM02040C1211FB300,https://app.lcm-client.com/belimo/matching/40617-01211/a57dd45b8b8bfbbc6b72118464e2d5e6,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/ 40617-01211
13,14,Resistors,Vishay,40617-01211,MMA02040C1308F,MMA02040C1308FB300,https://app.lcm-client.com/belimo/matching/40617-01308/a57dd45b8b8bfbbc6b72118464e330ad,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01211
14,15,Resistors,Vishay,40617-01308,SMM02040C1308F,SMM02040C1308FB300,https://app.lcm-client.com/belimo/matching/40617-01308/a57dd45b8b8bfbbc6b72118464e3356a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01308
15,16,Resistors,Vishay,40617-01308,MMA02040C1508F,MMA02040C1508FB300,https://app.lcm-client.com/belimo/matching/40617-01508/a57dd45b8b8bfbbc6b72118464e39977,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01308
16,17,Resistors,Vishay,40617-01508,SMM02040C1508F,SMM02040C1508FB300,https://app.lcm-client.com/belimo/matching/40617-01508/a57dd45b8b8bfbbc6b72118464e3a808,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01508
17,18,Resistors,Vishay,40617-01508,MMA02040C1509F,MMA02040C1509FB300,https://app.lcm-client.com/belimo/matching/40617-01509/a57dd45b8b8bfbbc6b72118464e40ddc,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01508
18,19,Resistors,Vishay,40617-01509,SMM02040C1509F,SMM02040C1509FB300,https://app.lcm-client.com/belimo/matching/40617-01509/a57dd45b8b8bfbbc6b72118464e41200,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01509
19,20,Resistors,Vishay,40617-01509,MMA02040C1800F,MMA02040C1800FB300,https://app.lcm-client.com/belimo/matching/40617-01800/a57dd45b8b8bfbbc6b72118464e48179,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01509
20,21,Resistors,Vishay,40617-03901,SMM02040C3901F,SMM02040C3901FB300,https://app.lcm-client.com/belimo/matching/40617-03901/a57dd45b8b8bfbbc6b72118464e91b53,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03901
21,22,Resistors,Vishay,40617-04301,MMA02040C4301F,MMA02040C4301FB300,https://app.lcm-client.com/belimo/matching/40617-04301/a57dd45b8b8bfbbc6b72118464e98b90,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04301
22,23,Resistors,Vishay,40617-04301,SMM02040C4301F,SMM02040C4301FB300,https://app.lcm-client.com/belimo/matching/40617-04301/a57dd45b8b8bfbbc6b72118464e9917e,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04301
23,24,Resistors,Vishay,40617-04700,MMA02040C4700F,MMA02040C4700FB300,https://app.lcm-client.com/belimo/matching/40617-04700/a57dd45b8b8bfbbc6b72118464ea276d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04700
24,25,Resistors,Vishay,40617-04700,SMM02040C4700F,SMM02040C4700FB300,https://app.lcm-client.com/belimo/matching/40617-04700/a57dd45b8b8bfbbc6b72118464ea2ceb,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04700
25,26,Resistors,Vishay,47180,MBB02070C1052F,MBB02070C1052FRP00,https://app.lcm-client.com/belimo/matching/47180/a57dd45b8b8bfbbc6b72118464f9e611,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47180
26,27,Resistors,Vishay,47181,MBB02070C7322F,MBB02070C7322FRP00,https://app.lcm-client.com/belimo/matching/47181/a57dd45b8b8bfbbc6b72118464fa0d74,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47181
27,28,Resistors,Vishay,47182,MBB02070C8062F,MBB02070C8062FR100 ,https://app.lcm-client.com/belimo/matching/47182/a57dd45b8b8bfbbc6b72118464fa284b,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47182
28,29,Resistors,Vishay,47183,MBB02070C2873F,MBB02070C2873FRP00,https://app.lcm-client.com/belimo/matching/47183/a57dd45b8b8bfbbc6b72118464fa487f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47183
29,30,Resistors,Vishay,47184,MBB02070C4304F,MBB02070C4304FRP00,https://app.lcm-client.com/belimo/matching/47184/a57dd45b8b8bfbbc6b72118464fa7121,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47184
30,31,Resistors,Vishay,47340,MBB02070C4531F,MBB02070C4531FRP00,https://app.lcm-client.com/belimo/matching/47340/a57dd45b8b8bfbbc6b72118464fbae15,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47340
31,32,Resistors,Vishay,47341,MBB02070C5601F,MBB02070C5601FRP00,https://app.lcm-client.com/belimo/matching/47341/a57dd45b8b8bfbbc6b72118464fbbb63,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47341
32,33,Resistors,Vishay,47342,MBB02070C4423F,MBB02070C4423FRP00,https://app.lcm-client.com/belimo/matching/47342/a57dd45b8b8bfbbc6b72118464fbd854,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47342
33,34,Resistors,Vishay,47343,MBB02070C2671F,MBB02070C2671FRP00,https://app.lcm-client.com/belimo/matching/47343/a57dd45b8b8bfbbc6b72118464fbf0df,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47343
34,35,Resistors,Vishay,47344,MBB02070C6202F,MBB02070C6202FRP00,https://app.lcm-client.com/belimo/matching/47344/a57dd45b8b8bfbbc6b72118464fc0ace,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47344
35,36,Resistors,Vishay,47355-01104,MBB02070C1104F,MBB02070C1104FRP00,https://app.lcm-client.com/belimo/matching/47355-01104/a57dd45b8b8bfbbc6b72118464fc27b6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01104
36,37,Resistors,Vishay,47355-01104,MRS25000C1104F,MRS25000C1104FRP00,https://app.lcm-client.com/belimo/matching/47355-01104/a57dd45b8b8bfbbc6b72118464fc3277,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01104
37,38,Resistors,Vishay,47355-01153,MBB02070C1153F,MBB02070C1153FRP00,https://app.lcm-client.com/belimo/matching/47355-01153/a57dd45b8b8bfbbc6b72118464fc55bf,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01153
38,39,Resistors,Vishay,47355-01153,MRS25000C1153F,MRS25000C1153FRP00 ,https://app.lcm-client.com/belimo/matching/47355-01153/a57dd45b8b8bfbbc6b72118464fc6578,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01153
39,40,Resistors,Vishay,47355-01208,MBB02070C1208F,MBB02070C1208FRP00,https://app.lcm-client.com/belimo/matching/47355-01208/a57dd45b8b8bfbbc6b72118464fc73ef,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01208
40,41,Resistors,Vishay,40617-04992,SMM02040C4992F,SMM02040C4992FB300,https://app.lcm-client.com/belimo/matching/40617-04992/c8cb570d5127ae96aaae8eee6648e367,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04992
41,42,Resistors,Vishay,40617-05109,MMA02040C5109F,MMA02040C5109FB300,https://app.lcm-client.com/belimo/matching/40617-05109/c8cb570d5127ae96aaae8eee66495230,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-05109
42,43,Resistors,Vishay,40617-05109,SMM02040C5109F,SMM02040C5109FB300,https://app.lcm-client.com/belimo/matching/40617-05109/c8cb570d5127ae96aaae8eee66496136,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-05109
43,44,Resistors,Vishay,40617-05601,MMA02040C5601F,MMA02040C5601FB300,https://app.lcm-client.com/belimo/matching/40617-05601/c8cb570d5127ae96aaae8eee6649c485,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-05601
44,45,Resistors,Vishay,40617-05601,SMM02040C5601F,SMM02040C5601FB300,https://app.lcm-client.com/belimo/matching/40617-05601/c8cb570d5127ae96aaae8eee6649c730,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-05601
45,46,Resistors,Vishay,40617-06208,MMA02040C6208F,MMA02040C6208FB300,https://app.lcm-client.com/belimo/matching/40617-06208/c8cb570d5127ae96aaae8eee664a2dc7,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06208
46,47,Resistors,Vishay,40617-06208,SMM02040C6208F,SMM02040C6208FB300,https://app.lcm-client.com/belimo/matching/40617-06208/c8cb570d5127ae96aaae8eee664a3d62,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06208
47,48,Resistors,Vishay,40617-06800,MMA02040C6800F,MMA02040C6800FB300,https://app.lcm-client.com/belimo/matching/40617-06800/c8cb570d5127ae96aaae8eee664aadfe,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06800
48,49,Resistors,Vishay,40617-06800,SMM02040C6800F,SMM02040C6800FB300,https://app.lcm-client.com/belimo/matching/40617-06800/c8cb570d5127ae96aaae8eee664ab3f4,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06800
49,50,Resistors,Vishay,40617-06801,MMA02040C6801F,MMA02040C6801FB300,https://app.lcm-client.com/belimo/matching/40617-06801/c8cb570d5127ae96aaae8eee664b9f72,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06801
50,51,Resistors,Vishay,40618-07502,CRCW251275K0JN,CRCW251275K0JNEG,https://app.lcm-client.com/belimo/matching/40618-07502/c8cb570d5127ae96aaae8eee664dbba8,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/40618-07502
51,52,Resistors,Vishay,40663-03307,MMB02070C3307J,MMB02070C3307JB200,https://app.lcm-client.com/belimo/matching/40663-03307/c8cb570d5127ae96aaae8eee664ded91,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40663-03307
52,53,Resistors,Vishay,40663-05107,MMB02070C5107J,MMB02070C5107JB200,https://app.lcm-client.com/belimo/matching/40663-05107/c8cb570d5127ae96aaae8eee664e0785,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40663-05107
53,54,Resistors,Vishay,40701-01001,PR01000101001F,PR01000101001FR500,https://app.lcm-client.com/belimo/matching/40701-01001/c8cb570d5127ae96aaae8eee664e1100,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40701-01001
54,55,Resistors,Vishay,40702,MBE04140C8200F,MBE04140C8200FR200,https://app.lcm-client.com/belimo/matching/40702/c8cb570d5127ae96aaae8eee664e2354,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40702
55,56,Resistors,Vishay,40703-04990,PR02000204990F,PR02000204990FR500,https://app.lcm-client.com/belimo/matching/40703-04990/c8cb570d5127ae96aaae8eee664e3084,nok,Automotive,Yes,y,Missing In LCM,https://app.lcm-client.com/belimo/part/40703-04990
56,57,Resistors,Vishay,40710-05600,CPF3560R00FKE,CPF3560R00FKEE6,https://app.lcm-client.com/belimo/matching/40710-05600/c8cb570d5127ae96aaae8eee664e4712,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40710-05600
57,58,Resistors,Vishay,40710-05600,CPF3560R00FLE,CPF3560R00FLE36,https://app.lcm-client.com/belimo/matching/40710-05600/c8cb570d5127ae96aaae8eee664e48da,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40710-05600
58,59,Resistors,Vishay,41917-02208,RCS12062R20JN,RCS12062R20JNEA,https://app.lcm-client.com/belimo/matching/41917-02208/c8cb570d5127ae96aaae8eee66591f88,ok,STD,Exption,n,,https://app.lcm-client.com/belimo/part/41917-02208
59,60,Resistors,Vishay,41917-02209,RCS120622R0JN,RCS120622R0JNEA,https://app.lcm-client.com/belimo/matching/41917-02209/c8cb570d5127ae96aaae8eee66593e8b,ok,STD,Exption,n,,https://app.lcm-client.com/belimo/part/41917-02209
60,61,Resistors,Vishay,47012-02371,MRS25000C2371F,MRS25000C2371FRP00,https://app.lcm-client.com/belimo/matching/47012-02371/c8cb570d5127ae96aaae8eee665ba18c,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-02371
61,62,Resistors,Vishay,47012-02400,MBB02070C2400F,MBB02070C2400FRP00,https://app.lcm-client.com/belimo/matching/47012-02400/c8cb570d5127ae96aaae8eee665bc184,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47012-02400
62,63,Resistors,Vishay,47012-02400,MRS25000C2400F,MRS25000C2400FRP00,https://app.lcm-client.com/belimo/matching/47012-02400/c8cb570d5127ae96aaae8eee665bcc30,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47012-02400
63,64,Resistors,Vishay,47072,MBB02070C3301F,MBB02070C3301FRP00,https://app.lcm-client.com/belimo/matching/47072/c8cb570d5127ae96aaae8eee665e3813,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47072
64,65,Resistors,Vishay,47080,MBB02070C1603F,MBB02070C1603FRP00,https://app.lcm-client.com/belimo/matching/47080/c8cb570d5127ae96aaae8eee665e5210,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47080
65,66,Resistors,Vishay,47100,MBB02070C4122F,MBB02070C4122FRP00,https://app.lcm-client.com/belimo/matching/47100/c8cb570d5127ae96aaae8eee665e71cc,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47100
66,67,Resistors,Vishay,47101,MBB02070C1479F,MBB02070C1479FRP00,https://app.lcm-client.com/belimo/matching/47101/c8cb570d5127ae96aaae8eee665e9aa1,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47101
67,68,Resistors,Vishay,47102,MBB02070C8871F,MBB02070C8871FRP00,https://app.lcm-client.com/belimo/matching/47102/c8cb570d5127ae96aaae8eee665eb013,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47102
68,69,Resistors,Vishay,47103,MBB02070C2491F,MBB02070C2491FRP00,https://app.lcm-client.com/belimo/matching/47103/c8cb570d5127ae96aaae8eee665ed09c,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47103
69,70,Resistors,Vishay,47122,MBB02070C1583F,MBB02070C1583FRP00,https://app.lcm-client.com/belimo/matching/47122/c8cb570d5127ae96aaae8eee665f1b46,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47122
70,71,Resistors,Vishay,47142,MBB02070C8201F,MBB02070C8201FRP00,https://app.lcm-client.com/belimo/matching/47142/c8cb570d5127ae96aaae8eee66606f98,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47142
71,72,Resistors,Vishay,47145,MBB02070C1203F,MBB02070C1203FRP00,https://app.lcm-client.com/belimo/matching/47145/c8cb570d5127ae96aaae8eee6660a704,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47145
72,73,Resistors,Vishay,47162,MBB02070C5362F,MBB02070C5362FRP00,https://app.lcm-client.com/belimo/matching/47162/c8cb570d5127ae96aaae8eee6660c3c6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47162
73,74,Resistors,Vishay,47168,MBB02070C3003F,MBB02070C3003FRP00,https://app.lcm-client.com/belimo/matching/47168/c8cb570d5127ae96aaae8eee6660fe68,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47168
74,75,Resistors,Vishay,47179,MBB02070C9760F,MBB02070C9760FRP00,https://app.lcm-client.com/belimo/matching/47179/c8cb570d5127ae96aaae8eee666120a3,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47179
75,76,Resistors,Vishay,40412-02701,CRCW06032K70DH,CRCW06032K70DHEAP,https://app.lcm-client.com/belimo/matching/40412-02701/ef351458b324e0850a464074929e4c4e,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/40412-02701
76,77,Resistors,Vishay,40412-02701,CRCW06032K70DK,CRCW06032K70DHEAP,https://app.lcm-client.com/belimo/matching/40412-02701/ef351458b324e0850a464074929e54c2,ok,Automotive,Exption,y,PPM Difference,https://app.lcm-client.com/belimo/part/40412-02701
77,78,Resistors,Vishay,40542,MBB02070C2702F,MBB02070C2702FRP00 ,https://app.lcm-client.com/belimo/matching/40542/ef351458b324e0850a464074929f8a38,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40542
78,79,Resistors,Vishay,40542,MBB0207IC2702F,MBB0207IC2702FRP00,https://app.lcm-client.com/belimo/matching/40542/ef351458b324e0850a464074929f962a,nok,Medical,Yes,y,Missing In LCM,https://app.lcm-client.com/belimo/part/40542
79,80,Resistors,Vishay,40542,MRS25000C2702F,MRS25000C2702FRP00,https://app.lcm-client.com/belimo/matching/40542/ef351458b324e0850a464074929f971d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40542
80,81,Resistors,Vishay,40602-01100,SMM02070C1100F,SMM02070C1100FBS00,https://app.lcm-client.com/belimo/matching/40602-01100/ef351458b324e0850a46407492a0fcf3,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01100
81,82,Resistors,Vishay,40602-01501,MMB02070C1501F,MMB02070C1501FB700,https://app.lcm-client.com/belimo/matching/40602-01501/ef351458b324e0850a46407492a1312e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01501
82,83,Resistors,Vishay,40602-01501,SMM02070C1501F,SMM02070C1501FBS00,https://app.lcm-client.com/belimo/matching/40602-01501/ef351458b324e0850a46407492a13317,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01501
83,84,Resistors,Vishay,40602-01503,MMB02070C1503F,MMB02070C1503FB200,https://app.lcm-client.com/belimo/matching/40602-01503/ef351458b324e0850a46407492a166ca,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01503
84,85,Resistors,Vishay,40602-01503,SMM02070C1503F,SMM02070C1503FBS00,https://app.lcm-client.com/belimo/matching/40602-01503/ef351458b324e0850a46407492a172df,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01503
85,86,Resistors,Vishay,40602-01801,MMB02070C1801F,MMB02070C1801FB700,https://app.lcm-client.com/belimo/matching/40602-01801/ef351458b324e0850a46407492a19e31,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01801
86,87,Resistors,Vishay,40602-01801,SMM02070C1801F,SMM02070C1801FBS00,https://app.lcm-client.com/belimo/matching/40602-01801/ef351458b324e0850a46407492a1adcd,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01801
87,88,Resistors,Vishay,40602-02201,MMB02070C2201F,MMB02070C2201FB700,https://app.lcm-client.com/belimo/matching/40602-02201/ef351458b324e0850a46407492a1e4d1,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02201
88,89,Resistors,Vishay,40602-02201,SMM02070C2201F,SMM02070C2201FBS00,https://app.lcm-client.com/belimo/matching/40602-02201/ef351458b324e0850a46407492a1e7f8,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02201
89,90,Resistors,Vishay,40602-02203,MMB02070C2203F,MMB02070C2203FB200,https://app.lcm-client.com/belimo/matching/40602-02203/ef351458b324e0850a46407492a21787,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02203
90,91,Resistors,Vishay,40602-04701,SMM02070C4701F,SMM02070C4701FBS00,https://app.lcm-client.com/belimo/matching/40602-04701/ef351458b324e0850a46407492a55cd6,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04701
91,92,Resistors,Vishay,40602-04702,MMB02070C4702F,MMB02070C4702FB200,https://app.lcm-client.com/belimo/matching/40602-04702/ef351458b324e0850a46407492a5987a,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04702
92,93,Resistors,Vishay,40602-04702,SMM02070C4702F,SMM02070C4702FBS00 ,https://app.lcm-client.com/belimo/matching/40602-04702/ef351458b324e0850a46407492a59e12,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04702
93,94,Resistors,Vishay,40602-04703,MMB02070C4703F,MMB02070C4703FB200 ,https://app.lcm-client.com/belimo/matching/40602-04703/ef351458b324e0850a46407492a5c84a,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04703
94,95,Resistors,Vishay,40602-04703,SMM02070C4703F,SMM02070C4703FBS00,https://app.lcm-client.com/belimo/matching/40602-04703/ef351458b324e0850a46407492a5cef1,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04703
95,96,Resistors,Vishay,40602-05100,MMB02070C5100F,MMB02070C5100FB700,https://app.lcm-client.com/belimo/matching/40602-05100/ef351458b324e0850a46407492a6213a,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05100
96,97,Resistors,Vishay,40602-05100,SMM02070C5100F,SMM02070C5100FBP00,https://app.lcm-client.com/belimo/matching/40602-05100/ef351458b324e0850a46407492a628ff,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05100
97,98,Resistors,Vishay,40602-05603,MMB02070C5603F,MMB02070C5603FB700,https://app.lcm-client.com/belimo/matching/40602-05603/ef351458b324e0850a46407492a653e8,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05603
98,99,Resistors,Vishay,40602-05603,SMM02070C5603F,SMM02070C5603FBS00,https://app.lcm-client.com/belimo/matching/40602-05603/ef351458b324e0850a46407492a65dfb,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05603
99,100,Resistors,Vishay,40602-05607,MMB02070C5607F,MMB02070C5607FB200,https://app.lcm-client.com/belimo/matching/40602-05607/ef351458b324e0850a46407492a66cc9,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05607
100,101,Resistors,Vishay,40613-02002,MCU08050D2002B,MCU08050D2002BP500,https://app.lcm-client.com/belimo/matching/40613-02002/a57dd45b8b8bfbbc6b72118464d889cb,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-02002
101,102,Resistors,Vishay,40613-02432,MCU08050D2431B,MCU08050D2431BP500,https://app.lcm-client.com/belimo/matching/40613-02432/a57dd45b8b8bfbbc6b72118464d8b980,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-02432
102,103,Resistors,Vishay,40613-03321,MCU08050D3321B,MCU08050D3321BP500,https://app.lcm-client.com/belimo/matching/40613-03321/a57dd45b8b8bfbbc6b72118464d8ef7d,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-03321
103,104,Resistors,Vishay,40613-03601,MCU08050D3601B,MCU08050D3601BP500,https://app.lcm-client.com/belimo/matching/40613-03601/a57dd45b8b8bfbbc6b72118464d918c6,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-03601
104,105,Resistors,Vishay,40613-04022,MCU08050D4022B,MCU08050D4022BP500,https://app.lcm-client.com/belimo/matching/40613-04022/a57dd45b8b8bfbbc6b72118464da3edf,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-04022
105,106,Resistors,Vishay,40613-06802,MCU08050D6802B,MCU08050D6802BP500,https://app.lcm-client.com/belimo/matching/40613-06802/a57dd45b8b8bfbbc6b72118464da579b,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-06802
106,107,Resistors,Vishay,40613-07871,MCU08050D7871B,MCU08050D7871BP500,https://app.lcm-client.com/belimo/matching/40613-07871/a57dd45b8b8bfbbc6b72118464da6f4d,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-07871
107,108,Resistors,Vishay,40613-09762,MCU08050D9762B,MCU08050D9762BP500,https://app.lcm-client.com/belimo/matching/40613-09762/a57dd45b8b8bfbbc6b72118464da97e7,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-09762
108,109,Resistors,Vishay,40617-01204,MMA02040C1205F,MMA02040C1205FB300,https://app.lcm-client.com/belimo/matching/40617-01204/a57dd45b8b8bfbbc6b72118464e1f209,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01204
109,110,Resistors,Vishay,40617-01208,MMA02040C1208F,MMA02040C1208FB300,https://app.lcm-client.com/belimo/matching/40617-01208/a57dd45b8b8bfbbc6b72118464e26c1f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01208
110,111,Resistors,Vishay,47215,MBB02070C3603F,MBB02070C3603FRP00,https://app.lcm-client.com/belimo/matching/47215/a57dd45b8b8bfbbc6b72118464fa91aa,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47215
111,112,Resistors,Vishay,47232,MBB02070C5622F,MBB02070C5622FRP00,https://app.lcm-client.com/belimo/matching/47232/a57dd45b8b8bfbbc6b72118464fabb7c,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47232
112,113,Resistors,Vishay,47245,MBB02070C1330F,MBB02070C1330FRP00,https://app.lcm-client.com/belimo/matching/47245/a57dd45b8b8bfbbc6b72118464fadaf4,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47245
113,114,Resistors,Vishay,47251,MBB02070C1371F,MBB02070C1371FRP00,https://app.lcm-client.com/belimo/matching/47251/a57dd45b8b8bfbbc6b72118464faf77a,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47251
114,115,Resistors,Vishay,47274,MBB02070C1108F,MBB02070C1108FRP00,https://app.lcm-client.com/belimo/matching/47274/a57dd45b8b8bfbbc6b72118464fb1287,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47274
115,116,Resistors,Vishay,47313,MBB02070C3303F,MBB02070C3303FRP00,https://app.lcm-client.com/belimo/matching/47313/a57dd45b8b8bfbbc6b72118464fb22db,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47313
116,117,Resistors,Vishay,47315,MBB02070C1604F,MBB02070C1604FRP00,https://app.lcm-client.com/belimo/matching/47315/a57dd45b8b8bfbbc6b72118464fb3e0d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47315
117,118,Resistors,Vishay,47316,MBB02070C4704F,MBB02070C4704FRP00,https://app.lcm-client.com/belimo/matching/47316/a57dd45b8b8bfbbc6b72118464fb5c4f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47316
118,119,Resistors,Vishay,47337,MBB02070C2002F,MBB02070C2002FRP00,https://app.lcm-client.com/belimo/matching/47337/a57dd45b8b8bfbbc6b72118464fb756d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47337
119,120,Resistors,Vishay,47339,MBB02070C6802F,MBB02070C6802FRP00,https://app.lcm-client.com/belimo/matching/47339/a57dd45b8b8bfbbc6b72118464fb8f39,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47339
120,121,Resistors,Vishay,40617-06801,SMM02040C6801F,SMM02040C6801FB000,https://app.lcm-client.com/belimo/matching/40617-06801/c8cb570d5127ae96aaae8eee664ba638,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06801
121,122,Resistors,Vishay,40617-06807,MMA02040C6807F,MMA02040C6807FB300,https://app.lcm-client.com/belimo/matching/40617-06807/c8cb570d5127ae96aaae8eee664c0b79,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06807
122,123,Resistors,Vishay,40617-06807,SMM02040B6807J,SMM02040B6807JB000,https://app.lcm-client.com/belimo/matching/40617-06807/c8cb570d5127ae96aaae8eee664c1061,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06807
123,124,Resistors,Vishay,40617-07502,MMA02040C7502F,MMA02040C7502FB200,https://app.lcm-client.com/belimo/matching/40617-07502/c8cb570d5127ae96aaae8eee664c7046,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-07502
124,125,Resistors,Vishay,40617-07502,SMM02040C7502F,SMM02040C7502FB000,https://app.lcm-client.com/belimo/matching/40617-07502/c8cb570d5127ae96aaae8eee664c780d,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-07502
125,126,Resistors,Vishay,40617-09107,MMA02040C9107F,MMA02040C9107FB300,https://app.lcm-client.com/belimo/matching/40617-09107/c8cb570d5127ae96aaae8eee664cd373,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-09107
126,127,Resistors,Vishay,40617-09107,SMM02040C9107F,SMM02040C9107FB000,https://app.lcm-client.com/belimo/matching/40617-09107/c8cb570d5127ae96aaae8eee664cd73a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-09107
127,128,Resistors,Vishay,40618-01001,CRCW25121K00JN,CRCW25121K00JNEG,https://app.lcm-client.com/belimo/matching/40618-01001/c8cb570d5127ae96aaae8eee664d0cdc,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/40618-01001
128,129,Resistors,Vishay,40618-01501,CRCW25121K50JN,CRCW25121K50JNEG,https://app.lcm-client.com/belimo/matching/40618-01501/c8cb570d5127ae96aaae8eee664d2f90,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/40618-01501
129,130,Resistors,Vishay,40618-02401,CRCW25122K40JN,CRCW25122K40JNEG,https://app.lcm-client.com/belimo/matching/40618-02401/c8cb570d5127ae96aaae8eee664d5a8d,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/40618-02401
130,131,Resistors,Vishay,47123,MBB02070C1873F,MBB02070C1873FRP00,https://app.lcm-client.com/belimo/matching/47123/c8cb570d5127ae96aaae8eee665f3f95,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47123
131,132,Resistors,Vishay,47125,MBB02070C1008F,MBB02070C1008FRP00,https://app.lcm-client.com/belimo/matching/47125/c8cb570d5127ae96aaae8eee665f5b74,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47125
132,133,Resistors,Vishay,47131,MBB02070C6193F,MBB02070C6193FRP00,https://app.lcm-client.com/belimo/matching/47131/c8cb570d5127ae96aaae8eee665f8495,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47131
133,134,Resistors,Vishay,47132,MBB02070C3323F,MBB02070C3323FRP00,https://app.lcm-client.com/belimo/matching/47132/c8cb570d5127ae96aaae8eee665fa357,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47132
134,135,Resistors,Vishay,47133,MBB02070C1433F,MBB02070C1433FRP00,https://app.lcm-client.com/belimo/matching/47133/c8cb570d5127ae96aaae8eee665fc181,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47133
135,136,Resistors,Vishay,47137,MBB02070C4700F,MBB02070C4700FRP00,https://app.lcm-client.com/belimo/matching/47137/c8cb570d5127ae96aaae8eee665fddc6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47137
136,137,Resistors,Vishay,47138,MBB02070C1653F,MBB02070C1653FRP00,https://app.lcm-client.com/belimo/matching/47138/c8cb570d5127ae96aaae8eee6660128b,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47138
137,138,Resistors,Vishay,47139,MBB02070C9104F,MBB02070C9104FRP00,https://app.lcm-client.com/belimo/matching/47139/c8cb570d5127ae96aaae8eee66602471,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47139
138,139,Resistors,Vishay,47140,MBB02070C3652F,MBB02070C3652FRP00,https://app.lcm-client.com/belimo/matching/47140/c8cb570d5127ae96aaae8eee6660397f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47140
139,140,Resistors,Vishay,47141,MBB02070C4873F,MBB02070C4873FRP00,https://app.lcm-client.com/belimo/matching/47141/c8cb570d5127ae96aaae8eee66605f85,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47141
140,141,Resistors,Vishay,40602-02203,SMM02070C2203F,SMM02070C2203FBS00,https://app.lcm-client.com/belimo/matching/40602-02203/ef351458b324e0850a46407492a2262b,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02203
141,142,Resistors,Vishay,40602-02204,MMB02070C2204F,MMB02070C2204FB200,https://app.lcm-client.com/belimo/matching/40602-02204/ef351458b324e0850a46407492a250b9,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02204
142,143,Resistors,Vishay,40602-02204,SMM02070C2204F,SMM02070C2204FBS00,https://app.lcm-client.com/belimo/matching/40602-02204/ef351458b324e0850a46407492a2542a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02204
143,144,Resistors,Vishay,40602-02401,MMB02070C2401F,MMB02070C2401FB200,https://app.lcm-client.com/belimo/matching/40602-02401/ef351458b324e0850a46407492a28bcc,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02401
144,145,Resistors,Vishay,40602-02401,SMM02070C2401F,SMM02070C2401FBS00,https://app.lcm-client.com/belimo/matching/40602-02401/ef351458b324e0850a46407492a295bf,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02401
145,146,Resistors,Vishay,40602-02402,MMB02070C2402F,MMB02070C2402FB200,https://app.lcm-client.com/belimo/matching/40602-02402/ef351458b324e0850a46407492a2d0e4,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02402
146,147,Resistors,Vishay,40602-02402,SMM02070C2402F,SMM02070C2402FBS00,https://app.lcm-client.com/belimo/matching/40602-02402/ef351458b324e0850a46407492a2d8ad,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02402
147,148,Resistors,Vishay,40602-02403,MMB02070C2403F,MMB02070C2403FB700,https://app.lcm-client.com/belimo/matching/40602-02403/ef351458b324e0850a46407492a2f357,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02403
148,149,Resistors,Vishay,40602-02403,SMM02070C2403F,SMM02070C2403FBP00,https://app.lcm-client.com/belimo/matching/40602-02403/ef351458b324e0850a46407492a2ffb8,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02403
149,150,Resistors,Vishay,40602-02491,MMB02070C2491F,MMB02070C2491FB700,https://app.lcm-client.com/belimo/matching/40602-02491/ef351458b324e0850a46407492a32ce6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02491
150,151,Resistors,Vishay,40602-06209,MMB02070C6209F,MMB02070C6209FB200,https://app.lcm-client.com/belimo/matching/40602-06209/ef351458b324e0850a46407492a6a237,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-06209
151,152,Resistors,Vishay,40602-06209,SMM02070C6209F,SMM02070C6209FBP00,https://app.lcm-client.com/belimo/matching/40602-06209/ef351458b324e0850a46407492a6a9a2,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-06209
152,153,Resistors,Vishay,40602-07502,MMB02070C7502F,MMB02070C7502FB700,https://app.lcm-client.com/belimo/matching/40602-07502/ef351458b324e0850a46407492a6e1c2,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-07502
153,154,Resistors,Vishay,40602-07502,SMM02070C7502F,SMM02070C7502FBS00,https://app.lcm-client.com/belimo/matching/40602-07502/ef351458b324e0850a46407492a6ee06,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-07502
154,155,Resistors,Vishay,40602-08063,MMB02070C8063F,MMB02070C8063FB700,https://app.lcm-client.com/belimo/matching/40602-08063/ef351458b324e0850a46407492a7303b,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08063
155,156,Resistors,Vishay,40602-08063,SMM02070C8063F,SMM02070C8063FBP00,https://app.lcm-client.com/belimo/matching/40602-08063/ef351458b324e0850a46407492a737bf,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08063
156,157,Resistors,Vishay,40602-08202,MMB02070C8202F,MMB02070C8202FB300,https://app.lcm-client.com/belimo/matching/40602-08202/ef351458b324e0850a46407492a76d3e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08202
157,158,Resistors,Vishay,40602-08202,SMM02070C8202F,SMM02070C8202FBS00,https://app.lcm-client.com/belimo/matching/40602-08202/ef351458b324e0850a46407492a770da,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08202
158,159,Resistors,Vishay,40602-08207,MMB02070C8207F,MMB02070C8207FB200,https://app.lcm-client.com/belimo/matching/40602-08207/ef351458b324e0850a46407492a78da5,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08207
159,160,Resistors,Vishay,40602-09100,MMB02070C9100F,MMB02070C9100FB700,https://app.lcm-client.com/belimo/matching/40602-09100/ef351458b324e0850a46407492a7a753,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-09100
160,161,Resistors,Vishay,40617-01108,SMM02040C1108F,SMM02040C1108FB300,https://app.lcm-client.com/belimo/matching/40617-01108/ef351458b324e0850a46407492bb4cca,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01108
161,162,Resistors,Vishay,40617-01201,MMA02040C1201F,MMA02040C1201FB300,https://app.lcm-client.com/belimo/matching/40617-01201/ef351458b324e0850a46407492bb95e2,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01201
162,163,Resistors,Vishay,40617-01201,SMM02040C1201F,SMM02040C1201FB000,https://app.lcm-client.com/belimo/matching/40617-01201/ef351458b324e0850a46407492bb972a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01201
163,164,Resistors,Vishay,40617-01202,MMA02040C1202F,MMA02040C1202FB000,https://app.lcm-client.com/belimo/matching/40617-01202/ef351458b324e0850a46407492bbf6a3,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01202
164,165,Resistors,Vishay,40617-01202,SMM02040C1202F,SMM02040C1202FB000,https://app.lcm-client.com/belimo/matching/40617-01202/ef351458b324e0850a46407492bbfc0f,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01202
165,166,Resistors,Vishay,40617-01801,MMA02040C1801F,MMA02040C1801FB000,https://app.lcm-client.com/belimo/matching/40617-01801/ef351458b324e0850a46407492be01bb,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01801
166,167,Resistors,Vishay,40617-01801,SMM02040C1801F,SMM02040C1801FB000,https://app.lcm-client.com/belimo/matching/40617-01801/ef351458b324e0850a46407492be0e90,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01801
167,168,Resistors,Vishay,40617-01808,MMA02040C1808F,MMA02040C1808FB000,https://app.lcm-client.com/belimo/matching/40617-01808/ef351458b324e0850a46407492be536e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01808
168,169,Resistors,Vishay,40617-01808,SMM02040C1808F,SMM02040C1808FB300,https://app.lcm-client.com/belimo/matching/40617-01808/ef351458b324e0850a46407492be5915,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01808
169,170,Resistors,Vishay,40617-02002,MMA02040C2002F,MMA02040C2002FB300,https://app.lcm-client.com/belimo/matching/40617-02002/ef351458b324e0850a46407492becaa5,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02002
170,171,Resistors,Vishay,40754,PR02FS0205608K,PR02FS0205608KR500,https://app.lcm-client.com/belimo/matching/40754/ef351458b324e0850a46407492c56031,nok,Automotive,Yes,y,Requires Update,https://app.lcm-client.com/belimo/part/40754
171,172,Resistors,Vishay,40754-01502,CPF215K000JN,CPF215K000JNEE6,https://app.lcm-client.com/belimo/matching/40754/ef351458b324e0850a46407492c56031,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40754-01502
172,173,Resistors,Vishay,40754-01502,PR02000201502J,PR02000201502JR500,https://app.lcm-client.com/belimo/matching/40754-01502/ef351458b324e0850a46407492c57dde,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40754-01502
173,174,Resistors,Vishay,40754-08201,CPF28K2000JN,CPF28K2000JNEE6,https://app.lcm-client.com/belimo/matching/40754-08201/ef351458b324e0850a46407492c580d0,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40754-08201
174,175,Resistors,Vishay,40754-08201,PR02000208201J,PR02000208201JR500,https://app.lcm-client.com/belimo/matching/40754-08201/ef351458b324e0850a46407492c5908d,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40754-08201
175,176,Resistors,Vishay,40754-15608,CPF25R6000JN,CPF25R6000JNEE6,https://app.lcm-client.com/belimo/matching/40754-15608/ef351458b324e0850a46407492c5b5db,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40754-15608
176,177,Resistors,Vishay,40754-15608,PR02000205608J,PR02000205608JR500,https://app.lcm-client.com/belimo/matching/40754-15608/ef351458b324e0850a46407492c5bcec,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40754-15608
177,178,Resistors,Vishay,40850,MBB02070C1101F,MBB02070C1101FRP00,https://app.lcm-client.com/belimo/matching/40850/ef351458b324e0850a46407492c6a39a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40850
178,179,Resistors,Vishay,40850,MRS25000C1101F,MRS25000C1101FRP00,https://app.lcm-client.com/belimo/matching/40850/ef351458b324e0850a46407492c6a870,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40850
179,180,Resistors,Vishay,40851,MBB02070C1501F,MBB02070C1501FRP00,https://app.lcm-client.com/belimo/matching/40851/ef351458b324e0850a46407492c6be78,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40851
180,181,Resistors,Vishay,40862,MRS25000C2203F,MRS25000C2203FRP00,https://app.lcm-client.com/belimo/matching/40862/ef351458b324e0850a46407492c741c4,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40862
181,182,Resistors,Vishay,40867,MBB02070C2403F,MBB02070C2403FRP00,https://app.lcm-client.com/belimo/matching/40867/ef351458b324e0850a46407492c751d7,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40867
182,183,Resistors,Vishay,40867,MRS25000C2403F,MRS25000C2403FRP00,https://app.lcm-client.com/belimo/matching/40867/ef351458b324e0850a46407492c755f8,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40867
183,184,Resistors,Vishay,40877,MBB02070C8661F,MBB02070C8661FRP00,https://app.lcm-client.com/belimo/matching/40877/ef351458b324e0850a46407492c770f6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40877
184,185,Resistors,Vishay,40877,MRS25000C8661F,MRS25000C8661FRP00,https://app.lcm-client.com/belimo/matching/40877/ef351458b324e0850a46407492c77fc8,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40877
185,186,Resistors,Vishay,40885,MBB02070C4221F,MBB02070C4221FRP00,https://app.lcm-client.com/belimo/matching/40885/ef351458b324e0850a46407492c78d94,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40885
186,187,Resistors,Vishay,40885,MRS25000C4221F,MRS25000C4221FRP00,https://app.lcm-client.com/belimo/matching/40885/ef351458b324e0850a46407492c791fe,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40885
187,188,Resistors,Vishay,40897,MBB02070C1009F,MBB02070C1009FRP00,https://app.lcm-client.com/belimo/matching/40897/ef351458b324e0850a46407492c85cab,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40897
188,189,Resistors,Vishay,40897,MRS25000C1009F,MRS25000C1009FRP00,https://app.lcm-client.com/belimo/matching/40897/ef351458b324e0850a46407492c85f06,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40897
189,190,Resistors,Vishay,40898,MBB02070C1102F,MBB02070C1102FRP00,https://app.lcm-client.com/belimo/matching/40898/ef351458b324e0850a46407492c87371,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40898
190,191,Resistors,Vishay,40926,MRS25000C8202F,MRS25000C8202FRP00,https://app.lcm-client.com/belimo/matching/40926/ef351458b324e0850a46407492c9893e,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40926
191,192,Resistors,Vishay,40927,MBB02070C1003F,MBB02070C1003FRP00,https://app.lcm-client.com/belimo/matching/40927/ef351458b324e0850a46407492c99e8a,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40927
192,193,Resistors,Vishay,40927,MRS25000C1003F,MRS25000C1003FRP00,https://app.lcm-client.com/belimo/matching/40927/ef351458b324e0850a46407492c9aaf7,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40927
193,194,Resistors,Vishay,40934,MRS25000C6202F,MRS25000C6202FRP00,https://app.lcm-client.com/belimo/matching/40934/ef351458b324e0850a46407492c9d6ee,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40934
194,195,Resistors,Vishay,40941,MBB02070C5602F,MBB02070C5602FRP00,https://app.lcm-client.com/belimo/matching/40941/ef351458b324e0850a46407492c9f1f8,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40941
195,196,Resistors,Vishay,40941,MRS25000C5602F,MRS25000C5602FRP00,https://app.lcm-client.com/belimo/matching/40941/ef351458b324e0850a46407492c9f940,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40941
196,197,Resistors,Vishay,40949,MBB02070C1500F,MBB02070C1500FRP00,https://app.lcm-client.com/belimo/matching/40949/ef351458b324e0850a46407492ca0e61,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40949
197,198,Resistors,Vishay,40949,MRS25000C1500F,MRS25000C1500FRP00,https://app.lcm-client.com/belimo/matching/40949/ef351458b324e0850a46407492ca16be,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40949
198,199,Resistors,Vishay,41237-01102,MMA02040D1102C,MMA02040D1102CB300,https://app.lcm-client.com/belimo/matching/40949/ef351458b324e0850a46407492ca16be,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/41237-01102
199,200,Resistors,Vishay,41749-02200,CMB02070X2200G,CMB02070X2200GB700,https://app.lcm-client.com/belimo/matching/41749-02200/ef351458b324e0850a46407492cb2e74,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/41749-02200
200,201,Resistors,Vishay,41861-02001,MCS04020D2001B,MCS04020D2001BE000,https://app.lcm-client.com/belimo/matching/41861-02001/ef351458b324e0850a46407492cd04a3,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/41861-02001
201,202,Resistors,Vishay,41861-02053,MCS04020D2053B,MCS04020D2053BE000,https://app.lcm-client.com/belimo/matching/41861-02053/ef351458b324e0850a46407492cd3674,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/41861-02053
202,203,Resistors,Vishay,41861-02702,MCS04020D2702B,MCS04020D2702BE000,https://app.lcm-client.com/belimo/matching/41861-02702/ef351458b324e0850a46407492cd5b69,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/41861-02702
203,204,Resistors,Vishay,41861-06802,MCS04020D6802B,MCS04020D6802BE000,https://app.lcm-client.com/belimo/matching/41861-06802/ef351458b324e0850a46407492cd9fd4,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/41861-06802
204,205,Resistors,Vishay,47012-02550,MBB02070C2550F,MBB02070C2550FRP00,https://app.lcm-client.com/belimo/matching/47012-02550/ef351458b324e0850a46407492d6899c,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/47012-02550
205,206,Resistors,Vishay,47012-02550,MRS25000C2550F,MRS25000C2550FRP00,https://app.lcm-client.com/belimo/matching/47012-02550/ef351458b324e0850a46407492d68c0f,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-02550
206,207,Resistors,Vishay,47012-03303,MRS25000C3303F,MRS25000C3303FRP00,https://app.lcm-client.com/belimo/matching/47012-03303/ef351458b324e0850a46407492d6aa08,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-03303
207,208,Resistors,Vishay,47012-03308,MBB02070C3308F,MBB02070C3308FRP00,https://app.lcm-client.com/belimo/matching/47012-03308/ef351458b324e0850a46407492d6c42d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47012-03308
208,209,Resistors,Vishay,47012-03308,MRS25000C3308F,MRS25000C3308FRP00,https://app.lcm-client.com/belimo/matching/47012-03308/ef351458b324e0850a46407492d6d03b,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-03308
209,210,Resistors,Vishay,47012-03830,MBB02070C3830F,MBB02070C3830FRP00,https://app.lcm-client.com/belimo/matching/47012-03830/ef351458b324e0850a46407492d6eaad,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/47012-03830
210,211,Resistors,Vishay,47042,MBB02070C1503F,MBB02070C1503FRP00,https://app.lcm-client.com/belimo/matching/47042/ef351458b324e0850a46407492d86be4,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/47042
211,212,Resistors,Vishay,47355-01279,MBB02070C1279F,MBB02070C1279FRP00,https://app.lcm-client.com/belimo/matching/47355-01279/ef351458b324e0850a46407492db9a16,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01279
212,213,Resistors,Vishay,47355-01279,MRS25000C1279F,MRS25000C1279FRP00,https://app.lcm-client.com/belimo/matching/47355-01279/ef351458b324e0850a46407492dba77c,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01279
213,214,Resistors,Vishay,47355-01501,MRS25000C1501F,MRS25000C1501FRP00,https://app.lcm-client.com/belimo/matching/47355-01501/ef351458b324e0850a46407492dbc315,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01501
214,215,Resistors,Vishay,47355-01653,MRS25000C1653F,MRS25000C1653FRP00,https://app.lcm-client.com/belimo/matching/47355-01653/ef351458b324e0850a46407492dbf3fd,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01653
215,216,Resistors,Vishay,47355-02671,MRS25000C2671F,MRS25000C2671FRP00,https://app.lcm-client.com/belimo/matching/47355-02671/ef351458b324e0850a46407492dc5b8c,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-02671
216,217,Resistors,Vishay,47355-03301,MRS25000C3301F,MRS25000C3301FRP00,https://app.lcm-client.com/belimo/matching/47355-03301/ef351458b324e0850a46407492dc82bf,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-03301
217,218,Resistors,Vishay,47355-05609,MBB02070C5609F,MBB02070C5609FRP00,https://app.lcm-client.com/belimo/matching/47355-05609/ef351458b324e0850a46407492dcab28,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-05609
218,219,Resistors,Vishay,47355-05609,MRS25000C5609F,MRS25000C5609FRP00,https://app.lcm-client.com/belimo/matching/47355-05609/ef351458b324e0850a46407492dcb421,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-05609
219,220,Resistors,Vishay,47355-05762,MBB02070C5762F,MBB02070C5762FRP00,https://app.lcm-client.com/belimo/matching/47355-05762/ef351458b324e0850a46407492dcdf45,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-05762
220,221,Resistors,Vishay,40617-01800,SMM02040C1800F,SMM02040C1800FB000,https://app.lcm-client.com/belimo/matching/40617-01800/a57dd45b8b8bfbbc6b72118464e48be7,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01800
221,222,Resistors,Vishay,40617-03001,MMA02040C3001F,MMA02040C3001FB000,https://app.lcm-client.com/belimo/matching/40617-03001/a57dd45b8b8bfbbc6b72118464e73cce,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03001
222,223,Resistors,Vishay,40617-03001,SMM02040C3001F,SMM02040C3001FB000,https://app.lcm-client.com/belimo/matching/40617-03001/a57dd45b8b8bfbbc6b72118464e74406,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03001
223,224,Resistors,Vishay,40617-03008,MMA02040C3008F,MMA02040C3008FB000,https://app.lcm-client.com/belimo/matching/40617-03008/a57dd45b8b8bfbbc6b72118464e79b6e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03008
224,225,Resistors,Vishay,40617-03008,SMM02040C3008F,SMM02040C3008FB000,https://app.lcm-client.com/belimo/matching/40617-03008/a57dd45b8b8bfbbc6b72118464e7a30e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03008
225,226,Resistors,Vishay,40617-03301,MMA02040C3301F,MMA02040C3301FB000,https://app.lcm-client.com/belimo/matching/40617-03301/a57dd45b8b8bfbbc6b72118464e81354,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03301
226,227,Resistors,Vishay,40617-03301,SMM02040C3301F,SMM02040C3301FB000,https://app.lcm-client.com/belimo/matching/40617-03301/a57dd45b8b8bfbbc6b72118464e818d6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03301
227,228,Resistors,Vishay,40617-03303,MMA02040C3303F,MMA02040C3303FB000,https://app.lcm-client.com/belimo/matching/40617-03303/a57dd45b8b8bfbbc6b72118464e88cee,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03303
228,229,Resistors,Vishay,40617-03303,SMM02040C3303F,SMM02040C3303FB000,https://app.lcm-client.com/belimo/matching/40617-03303/a57dd45b8b8bfbbc6b72118464e896d0,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03303
229,230,Resistors,Vishay,40617-03901,MMA02040C3901F,MMA02040C3901FB000,https://app.lcm-client.com/belimo/matching/40617-03901/a57dd45b8b8bfbbc6b72118464e90c53,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03901
230,231,Resistors,Vishay,47001,MBB02070C1202F,MBB02070C1202FRP00,https://app.lcm-client.com/belimo/matching/47001/c8cb570d5127ae96aaae8eee665a9f99,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47001
231,232,Resistors,Vishay,47002,MBB02070C1000F,MBB02070C1000FRP00,https://app.lcm-client.com/belimo/matching/47002/c8cb570d5127ae96aaae8eee665abee6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47002
232,233,Resistors,Vishay,47004,MBB02070C1804F,MBB02070C1804FRP00,https://app.lcm-client.com/belimo/matching/47004/c8cb570d5127ae96aaae8eee665ae642,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47004
233,234,Resistors,Vishay,47007,MBB02070C3002F,MBB02070C3002FRP00,https://app.lcm-client.com/belimo/matching/47007/c8cb570d5127ae96aaae8eee665b0d45,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47007
234,235,Resistors,Vishay,47008,MBB02070C4701F,MBB02070C4701FRP00,https://app.lcm-client.com/belimo/matching/47008/c8cb570d5127ae96aaae8eee665b34df,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47008
235,236,Resistors,Vishay,47011,MBB02070C1502F,MBB02070C1502FRP00,https://app.lcm-client.com/belimo/matching/47011/c8cb570d5127ae96aaae8eee665b5e12,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47011
236,237,Resistors,Vishay,47012-01001,MBB02070C1001F,MBB02070C1001FRP00,https://app.lcm-client.com/belimo/matching/47012-01001/c8cb570d5127ae96aaae8eee665b7c87,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47012-01001
237,238,Resistors,Vishay,47012-01001,MRS25000C1001F,MRS25000C1001FRP00,https://app.lcm-client.com/belimo/matching/47012-01001/c8cb570d5127ae96aaae8eee665b7ef3,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-01001
238,239,Resistors,Vishay,47012-02371,MBB02070C2371F,MBB02070C2371FRP00,https://app.lcm-client.com/belimo/matching/47012-02371/c8cb570d5127ae96aaae8eee665b92cf,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47012-02371
239,240,Resistors,Vishay,40602-01100,MMB02070C1100F,MMB02070C1100FB700,https://app.lcm-client.com/belimo/matching/40602-01100/ef351458b324e0850a46407492a0f34b,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01100
240,241,Resistors,Vishay,40602-02491,SMM02070C2491F,SMM02070C2491FBP00,https://app.lcm-client.com/belimo/matching/40602-02491/ef351458b324e0850a46407492a32d66,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02491
241,242,Resistors,Vishay,40602-02703,MMB02070C2703F,MMB02070C2703FB700,https://app.lcm-client.com/belimo/matching/40602-02703/ef351458b324e0850a46407492a36b57,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02703
242,243,Resistors,Vishay,40602-02703,SMM02070C2703F,SMM02070C2703FBS00,https://app.lcm-client.com/belimo/matching/40602-02703/ef351458b324e0850a46407492a3748f,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02703
243,244,Resistors,Vishay,40602-03000,MMB02070C3000F,MMB02070C3000FB700,https://app.lcm-client.com/belimo/matching/40602-03000/ef351458b324e0850a46407492a3b4b3,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-03000
244,245,Resistors,Vishay,40602-03000,SMM02070C3000F,SMM02070C3000FBS00,https://app.lcm-client.com/belimo/matching/40602-03000/ef351458b324e0850a46407492a3be47,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-03000
245,246,Resistors,Vishay,40602-03303,MMB02070C3303F,MMB02070C3303FB700,https://app.lcm-client.com/belimo/matching/40602-03303/ef351458b324e0850a46407492a3dded,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-03303
246,247,Resistors,Vishay,40602-03303,SMM02070C3303F,SMM02070C3303FBS00,https://app.lcm-client.com/belimo/matching/40602-03303/ef351458b324e0850a46407492a3e67a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-03303
247,248,Resistors,Vishay,40602-04700,MMB02070C4700F,MMB02070C4700FB700,https://app.lcm-client.com/belimo/matching/40602-04700/ef351458b324e0850a46407492a51eab,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04700
248,249,Resistors,Vishay,40602-04700,SMM02070C4700F,SMM02070C4700FBP00,https://app.lcm-client.com/belimo/matching/40602-04700/ef351458b324e0850a46407492a52341,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04700
249,250,Resistors,Vishay,40617-01108,MMA02040C1108F,MMA02040C1108FB000,https://app.lcm-client.com/belimo/matching/40617-01108/ef351458b324e0850a46407492bb453c,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01108
250,251,Resistors,Vishay,40617-02002,SMM02040C2002F,SMM02040C2002FB000,https://app.lcm-client.com/belimo/matching/40617-02002/ef351458b324e0850a46407492bed203,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02002
251,252,Resistors,Vishay,40617-02008,MMA02040C2008F,MMA02040C2008FB000,https://app.lcm-client.com/belimo/matching/40617-02008/ef351458b324e0850a46407492bf3690,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02008
252,253,Resistors,Vishay,40617-02008,SMM02040C2008F,SMM02040C2008FB000,https://app.lcm-client.com/belimo/matching/40617-02008/ef351458b324e0850a46407492bf3890,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02008
253,254,Resistors,Vishay,40617-02201,MMA02040C2001F,MMA02040C2001FB000,https://app.lcm-client.com/belimo/matching/40617-02201/ef351458b324e0850a46407492bfa0e4,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02201
254,255,Resistors,Vishay,40617-02201,SMM02040C2201F,SMM02040C2201FB000,https://app.lcm-client.com/belimo/matching/40617-02201/ef351458b324e0850a46407492bfaa90,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02201
255,256,Resistors,Vishay,40617-02202,SMM02040C2202F,SMM02040C2202FB000,https://app.lcm-client.com/belimo/matching/40617-02202/ef351458b324e0850a46407492c02755,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02202
256,257,Resistors,Vishay,40617-02402,MMA02040C2402F,MMA02040C2402FB000,https://app.lcm-client.com/belimo/matching/40617-02402/ef351458b324e0850a46407492c086bf,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02402
257,258,Resistors,Vishay,40617-02402,SMM02040C2402F,SMM02040C2402FB000,https://app.lcm-client.com/belimo/matching/40617-02402/ef351458b324e0850a46407492c09313,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02402
258,259,Resistors,Vishay,40617-02408,MMA02040C2408F,MMA02040C2408FB000,https://app.lcm-client.com/belimo/matching/40617-02408/ef351458b324e0850a46407492c0cc99,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02408
259,260,Resistors,Vishay,40862,MBB02070C2203F,MBB02070C2203FRP00,https://app.lcm-client.com/belimo/matching/40862/ef351458b324e0850a46407492c74003,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40862
260,261,Resistors,Vishay,40898,MRS25000C1102F,MRS25000C1102FRP00,https://app.lcm-client.com/belimo/matching/40898/ef351458b324e0850a46407492c879f0,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40898
261,262,Resistors,Vishay,40901,MBB02070C4992F,MBB02070C4992FRP00,https://app.lcm-client.com/belimo/matching/40901/ef351458b324e0850a46407492c8980e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40901
262,263,Resistors,Vishay,40901,MRS25000C4992F,MRS25000C4992FRP00,https://app.lcm-client.com/belimo/matching/40901/ef351458b324e0850a46407492c8a5f3,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40901
263,264,Resistors,Vishay,40913,MBB02070C2201F,MBB02070C2201FRP00,https://app.lcm-client.com/belimo/matching/40913/ef351458b324e0850a46407492c8cd11,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40913
264,265,Resistors,Vishay,40913,MRS25000C2201F,MRS25000C2201FRP00,https://app.lcm-client.com/belimo/matching/40913/ef351458b324e0850a46407492c8ced5,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40913
265,266,Resistors,Vishay,40915,MRS25000C6802F,MRS25000C6802FRP00,https://app.lcm-client.com/belimo/matching/40915/ef351458b324e0850a46407492c8f08b,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40915
266,267,Resistors,Vishay,40919,MRS25000C8201F,MRS25000C8201FRP00,https://app.lcm-client.com/belimo/matching/40919/ef351458b324e0850a46407492c91498,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40919
267,268,Resistors,Vishay,40924,MBB02070C1002F,MBB02070C1002FRP00,https://app.lcm-client.com/belimo/matching/40924/ef351458b324e0850a46407492c95e69,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40924
268,269,Resistors,Vishay,40924,MRS25000C1002F,MRS25000C1002FRP00,https://app.lcm-client.com/belimo/matching/40924/ef351458b324e0850a46407492c9667f,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40924
269,270,Resistors,Vishay,41861-01003,MCS04020D1003B,MCS04020D1003BE500,https://app.lcm-client.com/belimo/matching/41861-01003/ef351458b324e0850a46407492ccbe77,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/41861-01003
270,271,Resistors,Vishay,47012-03830,MRS25000C3830F,MRS25000C3830FRP00,https://app.lcm-client.com/belimo/matching/47012-03830/ef351458b324e0850a46407492d6f482,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-03830
271,272,Resistors,Vishay,47012-04531,MRS25000C4531F,MRS25000C4531FRP00,https://app.lcm-client.com/belimo/matching/47012-04531/ef351458b324e0850a46407492d71357,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-04531
272,273,Resistors,Vishay,47012-06192,MBB02070C6192F,MBB02070C6192FRP00,https://app.lcm-client.com/belimo/matching/47012-06192/ef351458b324e0850a46407492d72930,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47012-06192
273,274,Resistors,Vishay,47012-06192,MRS25000C6192F,MRS25000C6192FRP00,https://app.lcm-client.com/belimo/matching/47012-06192/ef351458b324e0850a46407492d735ec,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-06192
274,275,Resistors,Vishay,47013,MBB02070C5600F,MBB02070C5600FRP00,https://app.lcm-client.com/belimo/matching/47013/ef351458b324e0850a46407492d77c2d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47013
275,276,Resistors,Vishay,47016,MBB02070C2102F,MBB02070C2102FRP00,https://app.lcm-client.com/belimo/matching/47016/ef351458b324e0850a46407492d79a35,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47016
276,277,Resistors,Vishay,47017,MBB02070C2802F,MBB02070C2802FRP00,https://app.lcm-client.com/belimo/matching/47017/ef351458b324e0850a46407492d7bc7e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47017
277,278,Resistors,Vishay,47030,MBB02070C1004F,MBB02070C1004FRP00,https://app.lcm-client.com/belimo/matching/47030/ef351458b324e0850a46407492d7ea45,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47030
278,279,Resistors,Vishay,47035,MBB02070C1802F,MBB02070C1802FRP00,https://app.lcm-client.com/belimo/matching/47035/ef351458b324e0850a46407492d82ea5,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47035
279,280,Resistors,Vishay,47355-01208,MRS25000C1208F,MRS25000C1208FRP00,https://app.lcm-client.com/belimo/matching/47355-01208/a57dd45b8b8bfbbc6b72118464fc8178,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01208
280,281,Resistors,Vishay,47355-01209,MBB02070C1209F,MBB02070C1209FRP00,https://app.lcm-client.com/belimo/matching/47355-01209/a57dd45b8b8bfbbc6b72118464fca02d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01209
281,282,Resistors,Vishay,47355-01209,MRS25000C1209F,MRS25000C1209FRP00,https://app.lcm-client.com/belimo/matching/47355-01209/a57dd45b8b8bfbbc6b72118464fcacd1,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01209
282,283,Resistors,Vishay,40617-01001,MMA02040C1001F,MMA02040C1001FB000,https://app.lcm-client.com/belimo/matching/40617-01001/c8cb570d5127ae96aaae8eee66425d73,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01001
283,284,Resistors,Vishay,40617-01001,SMM02040C1001F,SMM02040C1001FB000,https://app.lcm-client.com/belimo/matching/40617-01001/c8cb570d5127ae96aaae8eee664273bd,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01001
284,285,Resistors,Vishay,40617-04701,MMA02040C4701F,MMA02040C4701FB000,https://app.lcm-client.com/belimo/matching/40617-04701/c8cb570d5127ae96aaae8eee66480626,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04701
285,286,Resistors,Vishay,40617-04701,SMM02040C4701F,SMM02040C4701FB000,https://app.lcm-client.com/belimo/matching/40617-04701/c8cb570d5127ae96aaae8eee66480c80,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04701
286,287,Resistors,Vishay,40617-04708,MMA02040C4708F,MMA02040C4708FB000,https://app.lcm-client.com/belimo/matching/40617-04708/c8cb570d5127ae96aaae8eee66486f7f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04708
287,288,Resistors,Vishay,40617-04708,SMM02040C4708F,SMM02040C4708FB000,https://app.lcm-client.com/belimo/matching/40617-04708/c8cb570d5127ae96aaae8eee6648785d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04708
288,289,Resistors,Vishay,40617-04992,MMA02040C4992F,MMA02040C4992FB000,https://app.lcm-client.com/belimo/matching/40617-04992/c8cb570d5127ae96aaae8eee6648d911,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04992
289,290,Resistors,Vishay,40602-04701,MMB02070C4701F,MMB02070C4701FB700,https://app.lcm-client.com/belimo/matching/40602-04701/ef351458b324e0850a46407492a55a67,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04701
290,291,Resistors,Vishay,40602-09100,SMM02070C9100F,SMM02070C9100FBS00,https://app.lcm-client.com/belimo/matching/40602-09100/ef351458b324e0850a46407492a7a870,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-09100
291,292,Resistors,Vishay,40617-01002,MMA02040C1002F,MMA02040C1002FB000,https://app.lcm-client.com/belimo/matching/40617-01002/ef351458b324e0850a46407492b97ffb,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01002
292,293,Resistors,Vishay,40617-01002,SMM02040C1002F,SMM02040C1002FB000,https://app.lcm-client.com/belimo/matching/40617-01002/ef351458b324e0850a46407492b98f3c,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01002
293,294,Resistors,Vishay,40617-01003,MMA02040C1003F,MMA02040C1003FB000,https://app.lcm-client.com/belimo/matching/40617-01003/ef351458b324e0850a46407492b9d7bd,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01003
294,295,Resistors,Vishay,40617-01003,SMM02040C1003F,SMM02040C1003FB000,https://app.lcm-client.com/belimo/matching/40617-01003/ef351458b324e0850a46407492b9e217,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01003
295,296,Resistors,Vishay,40617-01008,MMA02040C1008F,MMA02040C1008FB000,https://app.lcm-client.com/belimo/matching/40617-01008/ef351458b324e0850a46407492ba4463,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01008
296,297,Resistors,Vishay,40617-01008,SMM02040C1008F,SMM02040C1008FB000,https://app.lcm-client.com/belimo/matching/40617-01008/ef351458b324e0850a46407492ba493f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01008
297,298,Resistors,Vishay,40617-01009,MMA02040C1009F,MMA02040C1009FB000,https://app.lcm-client.com/belimo/matching/40617-01009/ef351458b324e0850a46407492baaa84,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01009
298,299,Resistors,Vishay,40617-01009,SMM02040C1009F,SMM02040C1009FB000,https://app.lcm-client.com/belimo/matching/40617-01009/ef351458b324e0850a46407492bab791,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01009
299,300,Resistors,Vishay,40926,MBB02070C8202F,MBB02070C8202FRP00,https://app.lcm-client.com/belimo/matching/40926/ef351458b324e0850a46407492c97f9f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40926
300,301,Resistors,Vishay,41749-06800,CMB02070X6800G,CMB02070X6800GB700,https://app.lcm-client.com/belimo/matching/41749-06800/ef351458b324e0850a46407492cb3c37,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/41749-06800
301,302,Resistors,Vishay,41770-02401,CRCW12182K40FK,CRCW12182K40FKEK,https://app.lcm-client.com/belimo/matching/41770-02401/ef351458b324e0850a46407492cb4b4c,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41770-02401
302,303,Resistors,Vishay,41770-02401,RCL12182K40FK,RCL12182K40FKEK,https://app.lcm-client.com/belimo/matching/41770-02401/ef351458b324e0850a46407492cb5a01,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41770-02401
303,304,Resistors,Vishay,41770-02709,CRCW121827R0FK,CRCW121827R0FKEK,https://app.lcm-client.com/belimo/matching/41770-02709/ef351458b324e0850a46407492cb724c,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41770-02709
304,305,Resistors,Vishay,41770-02709,RCL121827R0FK,RCL121827R0FKEK,https://app.lcm-client.com/belimo/matching/41770-02709/ef351458b324e0850a46407492cb7c46,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41770-02709
305,306,Resistors,Vishay,41770-09100,CRCW1218910RFK,CRCW1218910RFKEK,https://app.lcm-client.com/belimo/matching/41770-09100/ef351458b324e0850a46407492cb859c,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41770-09100
306,307,Resistors,Vishay,41770-09100,RCL1218910RFK,RCL1218910RFKEK,https://app.lcm-client.com/belimo/matching/41770-09100/ef351458b324e0850a46407492cb8df7,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41770-09100
307,308,Resistors,Vishay,41807-08208,CRCW25128R20JN,CRCW25128R20JNEG,https://app.lcm-client.com/belimo/matching/41807-08208/ef351458b324e0850a46407492cc6d55,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41807-08208
308,309,Resistors,Vishay,41857-04700,CMA02040X4700G,CMA02040X4700GB300,https://app.lcm-client.com/belimo/matching/41857-04700/ef351458b324e0850a46407492cc8de1,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/41857-04700
309,310,Resistors,Vishay,40550,MBB0207IC1203F,MBB0207IC1203FRP00,https://app.lcm-client.com/belimo/matching/40550/ef351458b324e0850a464074929fa8a6,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40550
310,311,Resistors,Vishay,40550,MRS25000C1203F,MRS25000C1203FRP00,https://app.lcm-client.com/belimo/matching/40550/ef351458b324e0850a464074929faa94,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40550
311,312,Resistors,Vishay,40602-01001,MMB02070C1001F,MMB02070C1001FB700,https://app.lcm-client.com/belimo/matching/40602-01001/ef351458b324e0850a464074929fd84b,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01001
312,313,Resistors,Vishay,40602-01001,SMM02070C1001F,SMM02070C1001FBS00,https://app.lcm-client.com/belimo/matching/40602-01001/ef351458b324e0850a464074929fe654,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01001
313,314,Resistors,Vishay,40602-01002,MMB02070C1002F,MMB02070C1002FB700,https://app.lcm-client.com/belimo/matching/40602-01002/ef351458b324e0850a46407492a00ad0,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01002
314,315,Resistors,Vishay,40602-01002,SMM02070C1002F,SMM02070C1002FBS00,https://app.lcm-client.com/belimo/matching/40602-01002/ef351458b324e0850a46407492a00ede,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01002
315,316,Resistors,Vishay,40602-01004,MMB02070C1004F,MMB02070C1004FB700,https://app.lcm-client.com/belimo/matching/40602-01004/ef351458b324e0850a46407492a03473,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01004
316,317,Resistors,Vishay,40602-01004,SMM02070C1004F,SMM02070C1004FBS00,https://app.lcm-client.com/belimo/matching/40602-01004/ef351458b324e0850a46407492a03d9c,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01004
317,318,Resistors,Vishay,40861,MBB02070C2202F,MBB02070C2202FRP00,https://app.lcm-client.com/belimo/matching/40861/ef351458b324e0850a46407492c733f0,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40861
318,319,Resistors,Vishay,40861,MRS25000C2202F,MRS25000C2202FRP00,https://app.lcm-client.com/belimo/matching/40861/ef351458b324e0850a46407492c73735,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40861
319,320,Resistors,Vishay,47038,MBB02070C1103F,MBB02070C1103FRP00,https://app.lcm-client.com/belimo/matching/47038/ef351458b324e0850a46407492d84967,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47038
320,321,Resistors,Vishay,47355-05762,MRS25000C5762F,MRS25000C5762FRP00,https://app.lcm-client.com/belimo/matching/47355-05762/ef351458b324e0850a46407492dceb65,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-05762
321,322,Resistors,Vishay,47355-07503,MBB02070C7503F,MBB02070C7503FRP00,https://app.lcm-client.com/belimo/matching/47355-07503/ef351458b324e0850a46407492dd0a2c,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-07503
322,323,Resistors,Vishay,47355-07503,MRS25000C7503F,MRS25000C7503FRP00,https://app.lcm-client.com/belimo/matching/47355-07503/ef351458b324e0850a46407492dd1062,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-07503
323,324,Resistors,Vishay,47355-09102,MBB02070C9102F,MBB02070C9102FRP00,https://app.lcm-client.com/belimo/matching/47355-09102/ef351458b324e0850a46407492dd3bb8,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-09102
324,325,Resistors,Vishay,47355-09102,MRS25000C9102F,MRS25000C9102FRP00,https://app.lcm-client.com/belimo/matching/47355-09102/ef351458b324e0850a46407492dd4037,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-09102
325,326,Resistors,Vishay,47355-42200,MBB02070C2200F,MBB02070C2200FRP00,https://app.lcm-client.com/belimo/matching/47355-42200/ef351458b324e0850a46407492dd65ba,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-42200
326,327,Resistors,Vishay,47355-42200,MRS25000C2200F,MRS25000C2200FRP00,https://app.lcm-client.com/belimo/matching/47355-42200/ef351458b324e0850a46407492dd696b,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-42200
327,328,Resistors,Vishay,40617-02408,SMM02040C2408F,SMM02040C2408FB000,https://app.lcm-client.com/belimo/matching/40617-02408/ef351458b324e0850a46407492c0d2b0,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02408
328,329,Resistors,Vishay,40852,MBB02070C4702F,MBB02070C4702FRP00,https://app.lcm-client.com/belimo/matching/40852/ef351458b324e0850a46407492c6d60f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40852
329,330,Resistors,Vishay,40852,MRS25000C4702F,MRS25000C4702FRP00,https://app.lcm-client.com/belimo/matching/40852/ef351458b324e0850a46407492c6e1c7,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40852
330,331,Resistors,Vishay,40853,MBB02070C5902F,MBB02070C5902FRP00,https://app.lcm-client.com/belimo/matching/40853/ef351458b324e0850a46407492c703d9,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40853
331,332,Resistors,Vishay,40853,MRS25000C5902F,MRS25000C5902FRP00,https://app.lcm-client.com/belimo/matching/40853/ef351458b324e0850a46407492c70733,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40853
332,333,Resistors,Vishay,40860,MBB02070C3001F,MBB02070C3001FRP00,https://app.lcm-client.com/belimo/matching/40860/ef351458b324e0850a46407492c71d0c,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40860
333,334,Resistors,Vishay,40860,MRS25000C3001F,MRS25000C3001FRP00,https://app.lcm-client.com/belimo/matching/40860/ef351458b324e0850a46407492c72721,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40860
334,335,Resistors,Vishay,47355-44700,MRS25000C4700F,MRS25000C4700FRP00,https://app.lcm-client.com/belimo/matching/47355-44700/ef351458b324e0850a46407492dd925e,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-44700
335,336,Resistors,TT Electronics,40617-01204,WRM0204C1M2FI,WRM0204C-1M2FI,https://app.lcm-client.com/belimo/matching/40617-01204/a57dd45b8b8bfbbc6b72118464e1e61b,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01204
336,337,Resistors,TT Electronics,40617-01211,WRM0204C1K21FI,WRM0204C-470RFI,https://app.lcm-client.com/belimo/matching/40617-01211/a57dd45b8b8bfbbc6b72118464e2c13b,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01211
337,338,Resistors,TT Electronics,40617-01800,WRM0204C180RFI,WRM0204C180RFI,https://app.lcm-client.com/belimo/matching/40617-01800/a57dd45b8b8bfbbc6b72118464e475a3,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01800
338,339,Resistors,TT Electronics,40617-01801,WRM0204C1K8FI,WRM0204C-1K8FI,https://app.lcm-client.com/belimo/matching/40617-01801/a57dd45b8b8bfbbc6b72118464e4ef28,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01801
339,340,Resistors,TT Electronics,40617-03303,WRM0204C330KFI,WRM0204C-330KFI,https://app.lcm-client.com/belimo/matching/40617-03303/a57dd45b8b8bfbbc6b72118464e87aed,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03303
340,341,Resistors,TT Electronics,40617-04700,WRM0204C470RFI,WRM0204C-470RFI,https://app.lcm-client.com/belimo/matching/40617-04700/a57dd45b8b8bfbbc6b72118464ea09cb,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04700
341,342,Resistors,TT Electronics,40615-02002,PCF1206-R-20KB,PCF1206R-20KBT1 ,https://app.lcm-client.com/belimo/matching/40615-02002/c8cb570d5127ae96aaae8eee663f84a2,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02002
342,343,Resistors,TT Electronics,40615-02202,PCF1206-R-22KB,PCF1206R-22KBT1,https://app.lcm-client.com/belimo/matching/40615-02202/c8cb570d5127ae96aaae8eee663fadb4,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02202
343,344,Resistors,TT Electronics,40615-02372,PCF1206-R-56KB,PCF1206R-56KBT1,https://app.lcm-client.com/belimo/matching/40615-02202/c8cb570d5127ae96aaae8eee663fadb4,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02372
344,345,Resistors,TT Electronics,40615-02402,PCF1206-R-24KB,PCF1206R-24KBT1,https://app.lcm-client.com/belimo/matching/40615-02402/c8cb570d5127ae96aaae8eee664021c3,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02402
345,346,Resistors,TT Electronics,40615-02492,PCF1206-R-24K9B,PCF1206R-24K9BT1,https://app.lcm-client.com/belimo/matching/40615-02492/c8cb570d5127ae96aaae8eee66405af8,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02492
346,347,Resistors,TT Electronics,40615-02552,PCF1206-R-25K5B,PCF1206R-25K5BT1,https://app.lcm-client.com/belimo/matching/40615-02552/c8cb570d5127ae96aaae8eee664087ff,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02552
347,348,Resistors,TT Electronics,40615-02702,PCF1206-R-27KB,PCF1206R-27KBT1,https://app.lcm-client.com/belimo/matching/40615-02702/c8cb570d5127ae96aaae8eee6640c2eb,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02702
348,349,Resistors,TT Electronics,40615-03922,PCF1206-R-39K2B,PCF1206R-39K2BT1,https://app.lcm-client.com/belimo/matching/40615-03922/c8cb570d5127ae96aaae8eee6640ff82,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-03922
349,350,Resistors,TT Electronics,40615-06812,PCF1206-R-68K1B,PCF1206R-68K1BT1,https://app.lcm-client.com/belimo/matching/40615-06812/c8cb570d5127ae96aaae8eee6641618e,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-06812
350,351,Resistors,TT Electronics,40615-06982,PCF1206-R-69K8B,PCF1206R-69K8BT1,https://app.lcm-client.com/belimo/matching/40615-06982/c8cb570d5127ae96aaae8eee66419452,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-06982
351,352,Resistors,TT Electronics,40615-08201,PCF1206-R-8K2B,PCF1206R-8K2BT1,https://app.lcm-client.com/belimo/matching/40615-08201/c8cb570d5127ae96aaae8eee6641c3da,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-08201
352,353,Resistors,TT Electronics,40617-01001,WRM0204C1KFI,WRM0204C-1K0FI,https://app.lcm-client.com/belimo/matching/40617-01001/c8cb570d5127ae96aaae8eee66425552,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01001
353,354,Resistors,TT Electronics,40617-04701,WRM0204C4K7FI,WRM0204C-4K7FI,https://app.lcm-client.com/belimo/matching/40617-04701/c8cb570d5127ae96aaae8eee6647ff02,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04701
354,355,Resistors,TT Electronics,40617-04992,WRM0204C49K9FI,WRM0204C-49K9FI,https://app.lcm-client.com/belimo/matching/40617-04992/c8cb570d5127ae96aaae8eee6648bd7f,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04992
355,356,Resistors,TT Electronics,40617-05109,WRM0204C51RFI,WRM0204C-51RFI,https://app.lcm-client.com/belimo/matching/40617-05109/c8cb570d5127ae96aaae8eee664944ae,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-05109
356,357,Resistors,TT Electronics,40617-05601,WRM0204C5K6FI,WRM0204C-5K6FI,https://app.lcm-client.com/belimo/matching/40617-05601/c8cb570d5127ae96aaae8eee6649b46b,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-05601
357,358,Resistors,TT Electronics,40617-06800,WRM0204C680RFI,WRM0204C-680RFI,https://app.lcm-client.com/belimo/matching/40617-06800/c8cb570d5127ae96aaae8eee664a97c6,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06800
358,359,Resistors,TT Electronics,40617-06801,WRM0204C6K8FI,WRM0204C-6K8FI,https://app.lcm-client.com/belimo/matching/40617-06801/c8cb570d5127ae96aaae8eee664b8a2f,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06801
359,360,Resistors,TT Electronics,40617-07502,WRM0204C75KFI,WRM0204C-75KFI,https://app.lcm-client.com/belimo/matching/40617-07502/c8cb570d5127ae96aaae8eee664c65a4,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-07502
360,361,Resistors,TT Electronics,40602-01001,WRM0207HPC-1K0F,WRM0207HPC-1K0FT2,https://app.lcm-client.com/belimo/matching/40602-01001/ef351458b324e0850a464074929fc757,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01001
361,362,Resistors,TT Electronics,40602-01002,WRM0207HPC-10KF,WRM0207HPC-10KFT2,https://app.lcm-client.com/belimo/matching/40602-01002/ef351458b324e0850a46407492a0014a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01002
362,363,Resistors,TT Electronics,40602-01004,WRM0207HPC-1M0F,WRM0207HPC-1M0FT2,https://app.lcm-client.com/belimo/matching/40602-01004/ef351458b324e0850a46407492a0258e,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01004
363,364,Resistors,TT Electronics,40602-01100,WRM0207HPC-110RF,WRM0207HPC-110RFT2,https://app.lcm-client.com/belimo/matching/40602-01100/ef351458b324e0850a46407492a0d9d9,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01100
364,365,Resistors,TT Electronics,40602-01501,WRM0207HPC-1K5F,WRM0207HPC-1K5FT2,https://app.lcm-client.com/belimo/matching/40602-01501/ef351458b324e0850a46407492a118c9,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01501
365,366,Resistors,TT Electronics,40602-01503,WRM0207HPC-150KF,WRM0207HPC-150KFT2,https://app.lcm-client.com/belimo/matching/40602-01503/ef351458b324e0850a46407492a15498,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01503
366,367,Resistors,TT Electronics,40602-01801,WRM0207HPC-1K8F,WRM0207HPC-1K8FT2,https://app.lcm-client.com/belimo/matching/40602-01801/ef351458b324e0850a46407492a19513,ok,Automotive,Yes,y,Requires Update,https://app.lcm-client.com/belimo/part/40602-01801
367,368,Resistors,TT Electronics,40602-02201,WRM0207HPC-2K2F,WRM0207HPC-2K2FT2,https://app.lcm-client.com/belimo/matching/40602-02201/ef351458b324e0850a46407492a1c7a2,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02201
368,369,Resistors,TT Electronics,40602-02203,WRM0207HPC-220KF,WRM0207HPC-220KFT2,https://app.lcm-client.com/belimo/matching/40602-02203/ef351458b324e0850a46407492a208f7,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02203
369,370,Resistors,TT Electronics,40602-02401,WRM0207HPC-2K4F,WRM0207HPC-2K4FT2,https://app.lcm-client.com/belimo/matching/40602-02401/ef351458b324e0850a46407492a27710,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02401
370,371,Resistors,TT Electronics,40602-02402,WRM0207HPC-24KF,WRM0207HPC-24KFT2,https://app.lcm-client.com/belimo/matching/40602-02402/ef351458b324e0850a46407492a2b96e,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02402
371,372,Resistors,TT Electronics,40602-02403,WRM0207HPC-240KF,WRM0207HPC-240KFT2,https://app.lcm-client.com/belimo/matching/40602-02403/ef351458b324e0850a46407492a2ea6d,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02403
372,373,Resistors,TT Electronics,40602-02491,WRM0207HPC-2K49F,WRM0207HPC-2K49FT2,https://app.lcm-client.com/belimo/matching/40602-02491/ef351458b324e0850a46407492a30f58,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02491
373,374,Resistors,TT Electronics,40602-02703,WRM0207HPC-270KF,WRM0207HPC-270KFT2,https://app.lcm-client.com/belimo/matching/40602-02703/ef351458b324e0850a46407492a35ee4,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02703
374,375,Resistors,TT Electronics,40602-03000,WRM0207HPC-300RF,WRM0207HPC-300RFT2,https://app.lcm-client.com/belimo/matching/40602-03000/ef351458b324e0850a46407492a39ce1,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-03000
375,376,Resistors,TT Electronics,40602-03303,WRM0207HPC-330KF,WRM0207HPC-330KFT2,https://app.lcm-client.com/belimo/matching/40602-03303/ef351458b324e0850a46407492a3cdcf,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-03303
376,377,Resistors,TT Electronics,40602-04700,WRM0207HPC-470RF,WRM0207HPC-470RFT2,https://app.lcm-client.com/belimo/matching/40602-04700/ef351458b324e0850a46407492a51cfd,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04700
377,378,Resistors,TT Electronics,40602-04701,WRM0207HPC-4K7F,WRM0207HPC-4K7FT2,https://app.lcm-client.com/belimo/matching/40602-04701/ef351458b324e0850a46407492a54e73,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04701
378,379,Resistors,TT Electronics,40602-04702,WRM0207HPC-47KF,WRM0207HPC-47KFT2,https://app.lcm-client.com/belimo/matching/40602-04702/ef351458b324e0850a46407492a58a5c,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04702
379,380,Resistors,TT Electronics,40602-04703,WRM0207HPC-470KF,WRM0207HPC-470KFT2,https://app.lcm-client.com/belimo/matching/40602-04703/ef351458b324e0850a46407492a5b923,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04703
380,381,Resistors,TT Electronics,40602-05100,WRM0207HPC-510RF,WRM0207HPC-510RFT2,https://app.lcm-client.com/belimo/matching/40602-05100/ef351458b324e0850a46407492a6084d,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05100
381,382,Resistors,TT Electronics,40602-05603,WRM0207HPC-560KF,WRM0207HPC-560KFT2,https://app.lcm-client.com/belimo/matching/40602-05603/ef351458b324e0850a46407492a64c72,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05603
382,383,Resistors,TT Electronics,40602-06209,WRM0207HPC-62RF,WRM0207HPC-62RFT2,https://app.lcm-client.com/belimo/matching/40602-06209/ef351458b324e0850a46407492a68b65,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-06209
383,384,Resistors,TT Electronics,40602-07502,WRM0207HPC-75KF,WRM0207HPC-75KFT2,https://app.lcm-client.com/belimo/matching/40602-07502/ef351458b324e0850a46407492a6d6ab,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-07502
384,385,Resistors,TT Electronics,40602-08063,WRM0207HPC-806KF,WRM0207HPC-806KFT2,https://app.lcm-client.com/belimo/matching/40602-08063/ef351458b324e0850a46407492a71c92,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08063
385,386,Resistors,TT Electronics,40602-08202,WRM0207HPC-82KF,WRM0207HPC-82KFT2,https://app.lcm-client.com/belimo/matching/40602-08202/ef351458b324e0850a46407492a75ccf,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08202
386,387,Resistors,TT Electronics,40602-09100,WRM0207HPC-910RF,WRM0207HPC-910RFT2,https://app.lcm-client.com/belimo/matching/40602-09100/ef351458b324e0850a46407492a79fec,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-09100
387,388,Resistors,TT Electronics,40615-01002,PCF1206-R-10KB,PCF1206R-10KBT1,https://app.lcm-client.com/belimo/matching/40615-01002/ef351458b324e0850a46407492b6a626,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-01002
388,389,Resistors,TT Electronics,40615-01022,PCF1206-R-10K2B,PCF1206R-10K2BT1,https://app.lcm-client.com/belimo/matching/40615-01022/ef351458b324e0850a46407492b6e25d,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-01022
389,390,Resistors,TT Electronics,40615-01213,PCF1206-R-121KB,PCF1206R-121KBT1,https://app.lcm-client.com/belimo/matching/40615-01213/ef351458b324e0850a46407492b72657,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-01213
390,391,Resistors,TT Electronics,40615-01822,PCF1206-R-18K2B,PCF1206R-18K2BT1,https://app.lcm-client.com/belimo/matching/40615-01822/ef351458b324e0850a46407492b751d0,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-01822
391,392,Resistors,TT Electronics,40617-01002,WRM0204C10KFI,WRM0204C-10KFI,https://app.lcm-client.com/belimo/matching/40617-01002/ef351458b324e0850a46407492b965cd,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01002
392,393,Resistors,TT Electronics,40617-01003,WRM0204C100KFI,WRM0204C-100KFI,https://app.lcm-client.com/belimo/matching/40617-01003/ef351458b324e0850a46407492b9d08e,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01003
393,394,Resistors,TT Electronics,40617-01108,WRM0204C1R1FI,WRM0204C-1R1FI,https://app.lcm-client.com/belimo/matching/40617-01108/ef351458b324e0850a46407492bb284b,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01108
394,395,Resistors,TT Electronics,40617-01201,WRM0204C1K2FI,WRM0204C-1K2FI,https://app.lcm-client.com/belimo/matching/40617-01201/ef351458b324e0850a46407492bb9190,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01201
395,396,Resistors,TT Electronics,40617-01202,WRM0204C12KFI,WRM0204C-12KFI,https://app.lcm-client.com/belimo/matching/40617-01202/ef351458b324e0850a46407492bbe280,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01202
396,397,Resistors,TT Electronics,40617-02002,WRM0204C20KFI,WRM0204C-20KFI,https://app.lcm-client.com/belimo/matching/40617-02002/ef351458b324e0850a46407492beb216,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02002
397,398,Resistors,TT Electronics,40617-02201,WRM0204C2K2FI,WRM0204C-2K2FI,https://app.lcm-client.com/belimo/matching/40617-02201/ef351458b324e0850a46407492bf96d3,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02201
398,399,Resistors,TT Electronics,40617-02202,WRM0204C22KFI,WRM0204C-22KFI,https://app.lcm-client.com/belimo/matching/40617-02202/ef351458b324e0850a46407492c0070f,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02202
399,400,Resistors,TT Electronics,40617-02402,WRM0204C24KFI,WRM0204C-24KFI,https://app.lcm-client.com/belimo/matching/40617-02402/ef351458b324e0850a46407492c077bb,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02402
400,401,Resistors,TT Electronics,41746-02007,LR2512-R20F,LR2512-R20FT1,https://app.lcm-client.com/belimo/matching/41746-02007/ef351458b324e0850a46407492cb1266,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41746-02007
401,402,Resistors,TT Electronics,41801-00057,LRMAP2512-R005F,LRMAP2512-R005FT4,https://app.lcm-client.com/belimo/matching/41801-00057/ef351458b324e0850a46407492cc617c,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/41801-00057
402,403,Resistors,TT Electronics,41808-01008,CHP1/8501R00J,CHP1/8501R00JLF,https://app.lcm-client.com/belimo/matching/41808-01008/ef351458b324e0850a46407492cc74b7,ok,STD,Yes,y,Obsolete,https://app.lcm-client.com/belimo/part/41808-01008
403,404,Resistors,Panasonic,41911-03001,ERJ2RKF3001,ERJ2RKF3001X,https://app.lcm-client.com/belimo/matching/41911-03001/01c0aaf7f54e36ff3a021a81ca303251,ok,Automotive,Exption,n,,
404,405,Resistors,Panasonic,41911-03301,ERJ2RKF3301,ERJ2RKF3301X,https://app.lcm-client.com/belimo/matching/41911-03301/01c0aaf7f54e36ff3a021a81ca30648f,ok,Automotive,Exption,n,,
405,406,Resistors,Panasonic,41911-05600,ERJ2RKF5600,ERJ2RKF5600X,https://app.lcm-client.com/belimo/matching/41911-05600/215374c1de05d3324b68f967dc5023c8,ok,Automotive,Exption,n,,
406,407,Resistors,Panasonic,41911-07502,ERJ2RKF7502,ERJ2RKF7502X,https://app.lcm-client.com/belimo/matching/41911-07502/215374c1de05d3324b68f967dc50b5a8,ok,Automotive,Exption,n,,
407,408,Resistors,Panasonic,41911-08203,ERJ2RKF8203,ERJ2RKF8203X,https://app.lcm-client.com/belimo/matching/41911-08203/215374c1de05d3324b68f967dc50e5fb,ok,Automotive,Exption,n,,
408,409,Resistors,Panasonic,41911-01103,ERJ2RKF1103,ERJ2RKF1103X,https://app.lcm-client.com/belimo/matching/41911-01103/46de94ed90f9f5ccd2b17e508cfa275c,ok,Automotive,Exption,n,,
409,410,Resistors,Panasonic,41911-01200,ERJ2RKF1200,ERJ2RKF1200X,https://app.lcm-client.com/belimo/matching/41911-01200/46de94ed90f9f5ccd2b17e508cfa4588,ok,Automotive,Exption,n,,
410,411,Resistors,Panasonic,41911-01302,ERJ2RKF1302,ERJ2RKF1302X,https://app.lcm-client.com/belimo/matching/41911-01302/46de94ed90f9f5ccd2b17e508cfa5fef,ok,Automotive,Exption,n,,
411,412,Resistors,Panasonic,41911-01303,ERJ2RKF1303,ERJ2RKF1303X,https://app.lcm-client.com/belimo/matching/41911-01303/46de94ed90f9f5ccd2b17e508cfa88df,ok,Automotive,Exption,n,,
412,413,Resistors,Panasonic,40613-01001,ERA6AEB102,ERA6AEB102V,https://app.lcm-client.com/belimo/matching/40613-01001/a57dd45b8b8bfbbc6b72118464d72071,ok,Automotive,Exption,n,,
413,414,Resistors,Panasonic,40613-01002,ERA6AEB103,ERA6AEB103V,https://app.lcm-client.com/belimo/matching/40613-01002/a57dd45b8b8bfbbc6b72118464d74c0c,ok,Automotive,Exption,n,,
414,415,Resistors,Panasonic,40613-01152,ERA6AEB1153,ERA6AEB1153V,https://app.lcm-client.com/belimo/matching/40613-01152/a57dd45b8b8bfbbc6b72118464d773c4,ok,Automotive,Exption,n,,
415,416,Resistors,Panasonic,40613-01271,ERA6AEB1271,ERA6AEB1271V,https://app.lcm-client.com/belimo/matching/40613-01271/a57dd45b8b8bfbbc6b72118464d7a262,ok,Automotive,Exption,n,,
416,417,Resistors,Panasonic,40613-01502,ERA6AEB1502,ERA6AEB1502V,https://app.lcm-client.com/belimo/matching/40613-01502/a57dd45b8b8bfbbc6b72118464d7ef05,ok,Automotive,Exption,n,,
417,418,Resistors,Panasonic,40613-01503,ERA6AEB1503,ERA6AEB1503V,https://app.lcm-client.com/belimo/matching/40613-01503/a57dd45b8b8bfbbc6b72118464d802b3,ok,Automotive,Exption,n,,
418,419,Resistors,Panasonic,40613-01602,ERA6AEB163,ERA6AEB163V,https://app.lcm-client.com/belimo/matching/40613-01602/a57dd45b8b8bfbbc6b72118464d8202c,ok,Automotive,Exption,n,,
419,420,Resistors,Panasonic,40613-02001,ERA6AEB2001,ERA6AEB2001V,https://app.lcm-client.com/belimo/matching/40613-02001/a57dd45b8b8bfbbc6b72118464d85572,ok,Automotive,Exption,n,,
420,421,Resistors,Panasonic,40613-02002,ERA6AEB2002,ERA6AEB2002V,https://app.lcm-client.com/belimo/matching/40613-02002/a57dd45b8b8bfbbc6b72118464d8777d,ok,Automotive,Exption,n,,
421,422,Resistors,Panasonic,40613-02432,ERA6AEB2431,ERA6AEB2431V,https://app.lcm-client.com/belimo/matching/40613-02432/a57dd45b8b8bfbbc6b72118464d8af94,ok,Automotive,Exption,n,,
422,423,Resistors,Panasonic,40613-03321,ERA6AEB3321,ERA6AEB3321V,https://app.lcm-client.com/belimo/matching/40613-03321/a57dd45b8b8bfbbc6b72118464d8e08b,ok,Automotive,Exption,n,,
423,424,Resistors,Panasonic,40613-03601,ERA6AEB362,ERA6AEB362V,https://app.lcm-client.com/belimo/matching/40613-03601/a57dd45b8b8bfbbc6b72118464d8fefd,ok,Automotive,Exption,n,,
424,425,Resistors,Panasonic,40613-04022,ERA6AEB4022,ERA6AEB4022V,https://app.lcm-client.com/belimo/matching/40613-04022/a57dd45b8b8bfbbc6b72118464da2fbb,ok,Automotive,Exption,n,,
425,426,Resistors,Panasonic,40613-06802,ERA6AEB683,ERA6AEB683V,https://app.lcm-client.com/belimo/matching/40613-06802/a57dd45b8b8bfbbc6b72118464da4c84,ok,Automotive,Exption,n,,
426,427,Resistors,Panasonic,40613-07871,ERA6AEB7871,ERA6AEB7871V,https://app.lcm-client.com/belimo/matching/40613-07871/a57dd45b8b8bfbbc6b72118464da5af6,ok,Automotive,Exption,n,,
427,428,Resistors,Panasonic,40613-09762,ERA6AEB9762,ERA6AEB9762V,https://app.lcm-client.com/belimo/matching/40613-09762/a57dd45b8b8bfbbc6b72118464da891e,ok,Automotive,Exption,n,,
428,429,Resistors,Panasonic,41911-01003,ERJ2RKF1003,ERJ2RKF1003X,https://app.lcm-client.com/belimo/matching/41911-01003/a57dd45b8b8bfbbc6b72118464f07eb4,ok,Automotive,Exption,n,,
429,430,Resistors,Panasonic,41911-01102,ERJ2RKF1102,ERJ2RKF1102X,https://app.lcm-client.com/belimo/matching/41911-01102/a57dd45b8b8bfbbc6b72118464f0d155,ok,Automotive,Exption,n,,
430,431,Resistors,Panasonic,41911-01202,ERJ2RKF1202,ERJ2RKF1202X,https://app.lcm-client.com/belimo/matching/41911-01202/a57dd45b8b8bfbbc6b72118464f1003f,ok,Automotive,Exption,n,,
431,432,Resistors,Panasonic,41911-01203,ERJ2RKF1203,ERJ2RKF1203X,https://app.lcm-client.com/belimo/matching/41911-01203/a57dd45b8b8bfbbc6b72118464f11b46,ok,Automotive,Exption,n,,
432,433,Resistors,Panasonic,41911-01402,ERJ2RKF1402,ERJ2RKF1402X,https://app.lcm-client.com/belimo/matching/41911-01402/a57dd45b8b8bfbbc6b72118464f1429e,ok,Automotive,Exption,n,,
433,434,Resistors,Panasonic,41911-01502,ERJ2RKF1502,ERJ2RKF1502X,https://app.lcm-client.com/belimo/matching/41911-01502/a57dd45b8b8bfbbc6b72118464f179f5,ok,Automotive,Exption,n,,
434,435,Resistors,Panasonic,41911-01503,ERJ2RKF1503,ERJ2RKF1503X,https://app.lcm-client.com/belimo/matching/41911-01503/a57dd45b8b8bfbbc6b72118464f1b159,ok,Automotive,Exption,n,,
435,436,Resistors,Panasonic,41911-01802,ERJ2RKF1802,ERJ2RKF1802X,https://app.lcm-client.com/belimo/matching/41911-01802/a57dd45b8b8bfbbc6b72118464f1e1f1,ok,Automotive,Exption,n,,
436,437,Resistors,Panasonic,41911-01803,ERJ2RKF1803,ERJ2RKF1803X,https://app.lcm-client.com/belimo/matching/41911-01803/a57dd45b8b8bfbbc6b72118464f210cd,ok,Automotive,Exption,n,,
437,438,Resistors,Panasonic,41911-02003,ERJ2RKF2003,ERJ2RKF2003X,https://app.lcm-client.com/belimo/matching/41911-02003/a57dd45b8b8bfbbc6b72118464f2425a,ok,Automotive,Exption,n,,
438,439,Resistors,Panasonic,41911-02200,ERJ2RKF2200,ERJ2RKF2200X,https://app.lcm-client.com/belimo/matching/41911-02200/a57dd45b8b8bfbbc6b72118464f2631d,ok,Automotive,Exption,n,,
439,440,Resistors,Panasonic,41911-02201,ERJ2RKF2201,ERJ2RKF2201X,https://app.lcm-client.com/belimo/matching/41911-02201/a57dd45b8b8bfbbc6b72118464f28fbc,ok,Automotive,Exption,n,,
440,441,Resistors,Panasonic,41911-02202,ERJ2RKF2202,ERJ2RKF2202X,https://app.lcm-client.com/belimo/matching/41911-02202/a57dd45b8b8bfbbc6b72118464f2ad6b,ok,Automotive,Exption,n,,
441,442,Resistors,Panasonic,41911-02203,ERJ2RKF2203,ERJ2RKF2203X,https://app.lcm-client.com/belimo/matching/41911-02203/a57dd45b8b8bfbbc6b72118464f2d9da,ok,Automotive,Exption,n,,
442,443,Resistors,Panasonic,47690-00001,ERJ-6ENF1003V,ERJ6ENF1003V,https://app.lcm-client.com/belimo/matching/47690-00001/a57dd45b8b8bfbbc6b72118464fe67b5,ok,Automotive,Exption,n,,
443,444,Resistors,Panasonic,47692-00001,ERJ-6ENF1783V,ERJ6ENF1783V,https://app.lcm-client.com/belimo/matching/47692-00001/a57dd45b8b8bfbbc6b72118464fe776d,ok,Automotive,Exption,n,,
444,445,Resistors,Panasonic,47694-00001,ERJ-6ENF4753V,ERJ6ENF4753V,https://app.lcm-client.com/belimo/matching/47694-00001/a57dd45b8b8bfbbc6b72118464fe8343,ok,Automotive,Exption,n,,
445,446,Resistors,Panasonic,47695-00001,ERJ-6ENF6493V,ERJ6ENF6493V,https://app.lcm-client.com/belimo/matching/47695-00001/a57dd45b8b8bfbbc6b72118464fe92ca,ok,Automotive,Exption,n,,
446,447,Resistors,Panasonic,47700-00001,ERJ-6ENF1000V,ERJ6ENF1000V,https://app.lcm-client.com/belimo/matching/47700-00001/a57dd45b8b8bfbbc6b72118464fee6c1,ok,Automotive,Exption,n,,
447,448,Resistors,Panasonic,47703-00001,ERJ-6ENF9090V,ERJ6ENF9090V,https://app.lcm-client.com/belimo/matching/47703-00001/a57dd45b8b8bfbbc6b72118464ff302b,ok,Automotive,Exption,n,,
448,449,Resistors,Panasonic,47704-00001,ERJ-8ENF1001V,ERJ8ENF1001V,https://app.lcm-client.com/belimo/matching/47704-00001/a57dd45b8b8bfbbc6b72118464ff3d4c,ok,Automotive,Exption,y,NRND,
449,450,Resistors,Panasonic,47716-00001,ERJ-8ENF62R0V,ERJ8ENF62R0V,https://app.lcm-client.com/belimo/matching/47716-00001/a57dd45b8b8bfbbc6b72118464ffbddb,ok,Automotive,Exption,y,NRND,
450,451,Resistors,Panasonic,47720-00001,ERJ-8ENF4990V,ERJ8ENF4990V,https://app.lcm-client.com/belimo/matching/47720-00001/a57dd45b8b8bfbbc6b72118464ffd9f2,ok,Automotive,Exption,y,NRND,
451,452,Resistors,Panasonic,41911-02400,ERJ2RKF2400,ERJ2RKF2400x,https://app.lcm-client.com/belimo/matching/41911-02400/c8cb570d5127ae96aaae8eee6653b5ee,ok,Automotive,Exption,n,,
452,453,Resistors,Panasonic,41911-02402,ERJ2RKF2402,ERJ2RKF2402X,https://app.lcm-client.com/belimo/matching/41911-02402/c8cb570d5127ae96aaae8eee6653e56f,ok,Automotive,Exption,n,,
453,454,Resistors,Panasonic,41911-02701,ERJ2RKF2701,ERJ2RKF2701X,https://app.lcm-client.com/belimo/matching/41911-02701/c8cb570d5127ae96aaae8eee66541a81,ok,Automotive,Exption,n,,
454,455,Resistors,Panasonic,41911-02702,ERJ2RKF2702,ERJ2RKF2702X,https://app.lcm-client.com/belimo/matching/41911-02702/c8cb570d5127ae96aaae8eee66543ebe,ok,Automotive,Exption,n,,
455,456,Resistors,Panasonic,41911-03002,ERJ2RKF3002,ERJ2RKF3002X,https://app.lcm-client.com/belimo/matching/41911-03002/c8cb570d5127ae96aaae8eee6654c2de,ok,Automotive,Exption,n,,
456,457,Resistors,Panasonic,41911-03003,ERJ2RKF3003,ERJ2RKF3003X,https://app.lcm-client.com/belimo/matching/41911-03003/c8cb570d5127ae96aaae8eee6655059a,ok,Automotive,Exption,n,,
457,458,Resistors,Panasonic,41911-03300,ERJ2RKF3300,ERJ2RKF3300X,https://app.lcm-client.com/belimo/matching/41911-03300/c8cb570d5127ae96aaae8eee66553a8c,ok,Automotive,Exption,n,,
458,459,Resistors,Panasonic,41911-03302,ERJ2RKF3302,ERJ2RKF3302X,https://app.lcm-client.com/belimo/matching/41911-03302/c8cb570d5127ae96aaae8eee66555ae8,ok,Automotive,Exption,n,,
459,460,Resistors,Panasonic,41911-03303,ERJ2RKF3303,ERJ2RKF3303X,https://app.lcm-client.com/belimo/matching/41911-03303/c8cb570d5127ae96aaae8eee665598e9,ok,Automotive,Exption,n,,
460,461,Resistors,Panasonic,41911-03900,ERJ2RKF3900,ERJ2RKF3900X,https://app.lcm-client.com/belimo/matching/41911-03900/c8cb570d5127ae96aaae8eee6655be39,ok,Automotive,Exption,n,,
461,462,Resistors,Panasonic,41911-04302,ERJ2RKF4302,ERJ2RKF4302X,https://app.lcm-client.com/belimo/matching/41911-04302/c8cb570d5127ae96aaae8eee66560497,ok,Automotive,Exption,n,,
462,463,Resistors,Panasonic,41911-04701,ERJ2RKF4703,ERJ2RKF4703X,https://app.lcm-client.com/belimo/matching/41911-04701/c8cb570d5127ae96aaae8eee66567b38,ok,Automotive,Exption,n,,
463,464,Resistors,Panasonic,41911-08872,ERJ2RKF8872,ERJ2RKF8872X,https://app.lcm-client.com/belimo/matching/41911-08872/c8cb570d5127ae96aaae8eee6658f0ba,ok,Automotive,Exption,n,,
464,465,Resistors,Panasonic,42175-03602,ERJ2RKF3602,ERJ2RKF3602X,https://app.lcm-client.com/belimo/matching/42175-03602/c8cb570d5127ae96aaae8eee6659b0b1,ok,Automotive,Exption,n,,
465,466,Resistors,Panasonic,42175-08201,ERJ2RKF8201,ERJ2RKF8201X,https://app.lcm-client.com/belimo/matching/42175-08201/c8cb570d5127ae96aaae8eee6659c7f1,ok,Automotive,Exption,n,,
466,467,Resistors,Panasonic,40412-02701,ERJ-U03D2701V,ERJU03D2701V,https://app.lcm-client.com/belimo/matching/40412-02701/ef351458b324e0850a464074929e2bee,ok,Automotive,Exption,n,,
467,468,Resistors,Panasonic,40412-02701,ERJ-U3RD2701V,ERJU3RD2701V,https://app.lcm-client.com/belimo/matching/40412-02701/ef351458b324e0850a464074929e3613,ok,Automotive,Exption,n,,
468,469,Resistors,Panasonic,41861-01003,ERA2AEB104,ERA2AEB104X,https://app.lcm-client.com/belimo/matching/41861-01003/ef351458b324e0850a46407492ccb156,ok,Automotive,Exption,n,,
469,470,Resistors,Panasonic,41861-02001,ERA2AEB202,ERA2AEB202X,https://app.lcm-client.com/belimo/matching/41861-02001/ef351458b324e0850a46407492ccefa4,ok,Automotive,Exption,n,,
470,471,Resistors,Panasonic,41861-02702,ERA2AEB273,ERA2AEB273X,https://app.lcm-client.com/belimo/matching/41861-02702/ef351458b324e0850a46407492cd4c96,ok,Automotive,Exption,n,,
471,472,Resistors,Panasonic,41861-04702,ERJ2RKF4702,ERJ2RKF4702X,https://app.lcm-client.com/belimo/matching/41861-04702/ef351458b324e0850a46407492cd780d,ok,Automotive,Exption,n,,
472,473,Resistors,Panasonic,41861-06802,ERA2AEB683,ERA2AEB683X,https://app.lcm-client.com/belimo/matching/41861-06802/ef351458b324e0850a46407492cd95c0,ok,Automotive,Exption,n,,
473,474,Resistors,Panasonic,41911-01001,ERJ2RKF1001,ERJ2RKF1001X,https://app.lcm-client.com/belimo/matching/41911-01001/ef351458b324e0850a46407492ced498,ok,Automotive,Exption,n,,
474,475,Resistors,Panasonic,41911-05102,ERJ2RKF5102,ERJ2RKF5102X,https://app.lcm-client.com/belimo/matching/41911-05102/ef351458b324e0850a46407492d19988,ok,Automotive,Exption,n,,
475,476,Resistors,Panasonic,41911-05103,ERJ2RKF5103,ERJ2RKF5103X,https://app.lcm-client.com/belimo/matching/41911-05103/ef351458b324e0850a46407492d1cc89,ok,Automotive,Exption,n,,
476,477,Resistors,Panasonic,41911-05603,ERJ2RKF5603,ERJ2RKF5603X,https://app.lcm-client.com/belimo/matching/41911-05603/ef351458b324e0850a46407492d223fb,ok,Automotive,Exption,n,,
477,478,Resistors,Panasonic,41911-06201,ERJ2RKF6201,ERJ2RKF6201X,https://app.lcm-client.com/belimo/matching/41911-06201/ef351458b324e0850a46407492d2c3d1,ok,Automotive,Exption,n,,
478,479,Resistors,Panasonic,41911-06202,ERJ2RKF6202,ERJ2RKF6202X,https://app.lcm-client.com/belimo/matching/41911-06202/ef351458b324e0850a46407492d2fe25,ok,Automotive,Exption,n,,
479,480,Resistors,Panasonic,41911-06802,ERJ2RKF6802,ERJ2RKF6802X,https://app.lcm-client.com/belimo/matching/41911-06802/ef351458b324e0850a46407492d330e8,ok,Automotive,Exption,n,,
480,481,Resistors,Panasonic,41911-06803,ERJ2RKF6803,ERJ2RKF6803X,https://app.lcm-client.com/belimo/matching/41911-06803/ef351458b324e0850a46407492d3643a,ok,Automotive,Exption,n,,
481,482,Resistors,Panasonic,41911-06809,ERJ2RKF68R0,ERJ2RKF68R0X,https://app.lcm-client.com/belimo/matching/41911-06809/ef351458b324e0850a46407492d3ab42,ok,Automotive,Exption,n,,
482,483,Resistors,Panasonic,47673-00001,ERJ-6ENF1151V,ERJ6ENF1151V,https://app.lcm-client.com/belimo/matching/47673-00001/ef351458b324e0850a46407492de2ab2,ok,Automotive,Exption,n,,
483,484,Resistors,Panasonic,47678-00001,ERJ-6ENF4301V,ERJ6ENF4301V,https://app.lcm-client.com/belimo/matching/47678-00001/ef351458b324e0850a46407492de700b,ok,Automotive,Exption,n,,
484,485,Resistors,Panasonic,47682-00001,ERJ-6ENF1912V,ERJ6ENF1912V,https://app.lcm-client.com/belimo/matching/47682-00001/ef351458b324e0850a46407492decfd2,ok,Automotive,Exption,n,,
485,486,Resistors,TDK,40138,B57620C5102J,B57620C5102J062,https://app.lcm-client.com/belimo/matching/40138/ef351458b324e0850a464074929dd12c,ok,STD,Yes,y,Requires Update,https://app.lcm-client.com/belimo/part/40138

@ -0,0 +1,487 @@
,Pos,Category,Manufacturer,CPN,MPN,MPN_Matched,Link,Status,State,ROHS,report_belimo,Comment,CPN_Link
0,1,Resistors,Vishay,41749-01509,CMB02070X1509,CMB02070X1509JB200 ,https://app.lcm-client.com/belimo/matching/41749-01509/46de94ed90f9f5ccd2b17e508cf7765a,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/41749-01509
1,2,Resistors,Vishay,40613-01001,MCU08050D1001B,MCU08050D1001BP500,https://app.lcm-client.com/belimo/matching/40613-01001/a57dd45b8b8bfbbc6b72118464d732a4,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01001
2,3,Resistors,Vishay,40613-01002,MCU08050D1002B,MCU08050D1002BP500,https://app.lcm-client.com/belimo/matching/40613-01002/a57dd45b8b8bfbbc6b72118464d75801,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01002
3,4,Resistors,Vishay,40613-01152,MCU08050D1152B,MCU08050D1152BP500,https://app.lcm-client.com/belimo/matching/40613-01152/a57dd45b8b8bfbbc6b72118464d7859d,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01152
4,5,Resistors,Vishay,40613-01271,MCU08050D1271B,MCU08050D1271BP500,https://app.lcm-client.com/belimo/matching/40613-01271/a57dd45b8b8bfbbc6b72118464d7c5d9,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01271
5,6,Resistors,Vishay,40613-01300,MCU08050D1300B,MCU08050D1300BP500,https://app.lcm-client.com/belimo/matching/40613-01300/a57dd45b8b8bfbbc6b72118464d7dde1,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01300
6,7,Resistors,Vishay,40613-01502,MCU08050D1502B,MCU08050D1502BP500,https://app.lcm-client.com/belimo/matching/40613-01502/a57dd45b8b8bfbbc6b72118464d7f9ab,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01502
7,8,Resistors,Vishay,40613-01503,MCU08050D1503B,MCU08050D1503BP500,https://app.lcm-client.com/belimo/matching/40613-01503/a57dd45b8b8bfbbc6b72118464d80785,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01503
8,9,Resistors,Vishay,40613-01602,MCU08050D1602B,MCU08050D1602BP500,https://app.lcm-client.com/belimo/matching/40613-01602/a57dd45b8b8bfbbc6b72118464d82cc5,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01602
9,10,Resistors,Vishay,40613-02001,MCU08050D2001B,MCU08050D2001BP500,https://app.lcm-client.com/belimo/matching/40613-02001/a57dd45b8b8bfbbc6b72118464d863d6,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-02001
10,11,Resistors,Vishay,40617-01208,SMM02040C1208F,SMM02040C1208FB300,https://app.lcm-client.com/belimo/matching/40617-01208/a57dd45b8b8bfbbc6b72118464e27bef,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01208
11,12,Resistors,Vishay,40617-01208,MMA02040C1211F,MMA02040C1211FB300,https://app.lcm-client.com/belimo/matching/40617-01211/a57dd45b8b8bfbbc6b72118464e2d494,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01208
12,13,Resistors,Vishay, 40617-01211,SMM02040C1211F,SMM02040C1211FB300,https://app.lcm-client.com/belimo/matching/40617-01211/a57dd45b8b8bfbbc6b72118464e2d5e6,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/ 40617-01211
13,14,Resistors,Vishay,40617-01211,MMA02040C1308F,MMA02040C1308FB300,https://app.lcm-client.com/belimo/matching/40617-01308/a57dd45b8b8bfbbc6b72118464e330ad,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01211
14,15,Resistors,Vishay,40617-01308,SMM02040C1308F,SMM02040C1308FB300,https://app.lcm-client.com/belimo/matching/40617-01308/a57dd45b8b8bfbbc6b72118464e3356a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01308
15,16,Resistors,Vishay,40617-01308,MMA02040C1508F,MMA02040C1508FB300,https://app.lcm-client.com/belimo/matching/40617-01508/a57dd45b8b8bfbbc6b72118464e39977,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01308
16,17,Resistors,Vishay,40617-01508,SMM02040C1508F,SMM02040C1508FB300,https://app.lcm-client.com/belimo/matching/40617-01508/a57dd45b8b8bfbbc6b72118464e3a808,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01508
17,18,Resistors,Vishay,40617-01508,MMA02040C1509F,MMA02040C1509FB300,https://app.lcm-client.com/belimo/matching/40617-01509/a57dd45b8b8bfbbc6b72118464e40ddc,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01508
18,19,Resistors,Vishay,40617-01509,SMM02040C1509F,SMM02040C1509FB300,https://app.lcm-client.com/belimo/matching/40617-01509/a57dd45b8b8bfbbc6b72118464e41200,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01509
19,20,Resistors,Vishay,40617-01509,MMA02040C1800F,MMA02040C1800FB300,https://app.lcm-client.com/belimo/matching/40617-01800/a57dd45b8b8bfbbc6b72118464e48179,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01509
20,21,Resistors,Vishay,40617-03901,SMM02040C3901F,SMM02040C3901FB300,https://app.lcm-client.com/belimo/matching/40617-03901/a57dd45b8b8bfbbc6b72118464e91b53,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03901
21,22,Resistors,Vishay,40617-04301,MMA02040C4301F,MMA02040C4301FB300,https://app.lcm-client.com/belimo/matching/40617-04301/a57dd45b8b8bfbbc6b72118464e98b90,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04301
22,23,Resistors,Vishay,40617-04301,SMM02040C4301F,SMM02040C4301FB300,https://app.lcm-client.com/belimo/matching/40617-04301/a57dd45b8b8bfbbc6b72118464e9917e,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04301
23,24,Resistors,Vishay,40617-04700,MMA02040C4700F,MMA02040C4700FB300,https://app.lcm-client.com/belimo/matching/40617-04700/a57dd45b8b8bfbbc6b72118464ea276d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04700
24,25,Resistors,Vishay,40617-04700,SMM02040C4700F,SMM02040C4700FB300,https://app.lcm-client.com/belimo/matching/40617-04700/a57dd45b8b8bfbbc6b72118464ea2ceb,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04700
25,26,Resistors,Vishay,47180,MBB02070C1052F,MBB02070C1052FRP00,https://app.lcm-client.com/belimo/matching/47180/a57dd45b8b8bfbbc6b72118464f9e611,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47180
26,27,Resistors,Vishay,47181,MBB02070C7322F,MBB02070C7322FRP00,https://app.lcm-client.com/belimo/matching/47181/a57dd45b8b8bfbbc6b72118464fa0d74,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47181
27,28,Resistors,Vishay,47182,MBB02070C8062F,MBB02070C8062FR100 ,https://app.lcm-client.com/belimo/matching/47182/a57dd45b8b8bfbbc6b72118464fa284b,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47182
28,29,Resistors,Vishay,47183,MBB02070C2873F,MBB02070C2873FRP00,https://app.lcm-client.com/belimo/matching/47183/a57dd45b8b8bfbbc6b72118464fa487f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47183
29,30,Resistors,Vishay,47184,MBB02070C4304F,MBB02070C4304FRP00,https://app.lcm-client.com/belimo/matching/47184/a57dd45b8b8bfbbc6b72118464fa7121,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47184
30,31,Resistors,Vishay,47340,MBB02070C4531F,MBB02070C4531FRP00,https://app.lcm-client.com/belimo/matching/47340/a57dd45b8b8bfbbc6b72118464fbae15,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47340
31,32,Resistors,Vishay,47341,MBB02070C5601F,MBB02070C5601FRP00,https://app.lcm-client.com/belimo/matching/47341/a57dd45b8b8bfbbc6b72118464fbbb63,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47341
32,33,Resistors,Vishay,47342,MBB02070C4423F,MBB02070C4423FRP00,https://app.lcm-client.com/belimo/matching/47342/a57dd45b8b8bfbbc6b72118464fbd854,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47342
33,34,Resistors,Vishay,47343,MBB02070C2671F,MBB02070C2671FRP00,https://app.lcm-client.com/belimo/matching/47343/a57dd45b8b8bfbbc6b72118464fbf0df,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47343
34,35,Resistors,Vishay,47344,MBB02070C6202F,MBB02070C6202FRP00,https://app.lcm-client.com/belimo/matching/47344/a57dd45b8b8bfbbc6b72118464fc0ace,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47344
35,36,Resistors,Vishay,47355-01104,MBB02070C1104F,MBB02070C1104FRP00,https://app.lcm-client.com/belimo/matching/47355-01104/a57dd45b8b8bfbbc6b72118464fc27b6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01104
36,37,Resistors,Vishay,47355-01104,MRS25000C1104F,MRS25000C1104FRP00,https://app.lcm-client.com/belimo/matching/47355-01104/a57dd45b8b8bfbbc6b72118464fc3277,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01104
37,38,Resistors,Vishay,47355-01153,MBB02070C1153F,MBB02070C1153FRP00,https://app.lcm-client.com/belimo/matching/47355-01153/a57dd45b8b8bfbbc6b72118464fc55bf,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01153
38,39,Resistors,Vishay,47355-01153,MRS25000C1153F,MRS25000C1153FRP00 ,https://app.lcm-client.com/belimo/matching/47355-01153/a57dd45b8b8bfbbc6b72118464fc6578,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01153
39,40,Resistors,Vishay,47355-01208,MBB02070C1208F,MBB02070C1208FRP00,https://app.lcm-client.com/belimo/matching/47355-01208/a57dd45b8b8bfbbc6b72118464fc73ef,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01208
40,41,Resistors,Vishay,40617-04992,SMM02040C4992F,SMM02040C4992FB300,https://app.lcm-client.com/belimo/matching/40617-04992/c8cb570d5127ae96aaae8eee6648e367,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04992
41,42,Resistors,Vishay,40617-05109,MMA02040C5109F,MMA02040C5109FB300,https://app.lcm-client.com/belimo/matching/40617-05109/c8cb570d5127ae96aaae8eee66495230,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-05109
42,43,Resistors,Vishay,40617-05109,SMM02040C5109F,SMM02040C5109FB300,https://app.lcm-client.com/belimo/matching/40617-05109/c8cb570d5127ae96aaae8eee66496136,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-05109
43,44,Resistors,Vishay,40617-05601,MMA02040C5601F,MMA02040C5601FB300,https://app.lcm-client.com/belimo/matching/40617-05601/c8cb570d5127ae96aaae8eee6649c485,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-05601
44,45,Resistors,Vishay,40617-05601,SMM02040C5601F,SMM02040C5601FB300,https://app.lcm-client.com/belimo/matching/40617-05601/c8cb570d5127ae96aaae8eee6649c730,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-05601
45,46,Resistors,Vishay,40617-06208,MMA02040C6208F,MMA02040C6208FB300,https://app.lcm-client.com/belimo/matching/40617-06208/c8cb570d5127ae96aaae8eee664a2dc7,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06208
46,47,Resistors,Vishay,40617-06208,SMM02040C6208F,SMM02040C6208FB300,https://app.lcm-client.com/belimo/matching/40617-06208/c8cb570d5127ae96aaae8eee664a3d62,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06208
47,48,Resistors,Vishay,40617-06800,MMA02040C6800F,MMA02040C6800FB300,https://app.lcm-client.com/belimo/matching/40617-06800/c8cb570d5127ae96aaae8eee664aadfe,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06800
48,49,Resistors,Vishay,40617-06800,SMM02040C6800F,SMM02040C6800FB300,https://app.lcm-client.com/belimo/matching/40617-06800/c8cb570d5127ae96aaae8eee664ab3f4,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06800
49,50,Resistors,Vishay,40617-06801,MMA02040C6801F,MMA02040C6801FB300,https://app.lcm-client.com/belimo/matching/40617-06801/c8cb570d5127ae96aaae8eee664b9f72,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06801
50,51,Resistors,Vishay,40618-07502,CRCW251275K0JN,CRCW251275K0JNEG,https://app.lcm-client.com/belimo/matching/40618-07502/c8cb570d5127ae96aaae8eee664dbba8,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/40618-07502
51,52,Resistors,Vishay,40663-03307,MMB02070C3307J,MMB02070C3307JB200,https://app.lcm-client.com/belimo/matching/40663-03307/c8cb570d5127ae96aaae8eee664ded91,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40663-03307
52,53,Resistors,Vishay,40663-05107,MMB02070C5107J,MMB02070C5107JB200,https://app.lcm-client.com/belimo/matching/40663-05107/c8cb570d5127ae96aaae8eee664e0785,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40663-05107
53,54,Resistors,Vishay,40701-01001,PR01000101001F,PR01000101001FR500,https://app.lcm-client.com/belimo/matching/40701-01001/c8cb570d5127ae96aaae8eee664e1100,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40701-01001
54,55,Resistors,Vishay,40702,MBE04140C8200F,MBE04140C8200FR200,https://app.lcm-client.com/belimo/matching/40702/c8cb570d5127ae96aaae8eee664e2354,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40702
55,56,Resistors,Vishay,40703-04990,PR02000204990F,PR02000204990FR500,https://app.lcm-client.com/belimo/matching/40703-04990/c8cb570d5127ae96aaae8eee664e3084,nok,Automotive,Yes,y,Missing In LCM,https://app.lcm-client.com/belimo/part/40703-04990
56,57,Resistors,Vishay,40710-05600,CPF3560R00FKE,CPF3560R00FKEE6,https://app.lcm-client.com/belimo/matching/40710-05600/c8cb570d5127ae96aaae8eee664e4712,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40710-05600
57,58,Resistors,Vishay,40710-05600,CPF3560R00FLE,CPF3560R00FLE36,https://app.lcm-client.com/belimo/matching/40710-05600/c8cb570d5127ae96aaae8eee664e48da,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40710-05600
58,59,Resistors,Vishay,41917-02208,RCS12062R20JN,RCS12062R20JNEA,https://app.lcm-client.com/belimo/matching/41917-02208/c8cb570d5127ae96aaae8eee66591f88,ok,STD,Exption,n,,https://app.lcm-client.com/belimo/part/41917-02208
59,60,Resistors,Vishay,41917-02209,RCS120622R0JN,RCS120622R0JNEA,https://app.lcm-client.com/belimo/matching/41917-02209/c8cb570d5127ae96aaae8eee66593e8b,ok,STD,Exption,n,,https://app.lcm-client.com/belimo/part/41917-02209
60,61,Resistors,Vishay,47012-02371,MRS25000C2371F,MRS25000C2371FRP00,https://app.lcm-client.com/belimo/matching/47012-02371/c8cb570d5127ae96aaae8eee665ba18c,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-02371
61,62,Resistors,Vishay,47012-02400,MBB02070C2400F,MBB02070C2400FRP00,https://app.lcm-client.com/belimo/matching/47012-02400/c8cb570d5127ae96aaae8eee665bc184,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47012-02400
62,63,Resistors,Vishay,47012-02400,MRS25000C2400F,MRS25000C2400FRP00,https://app.lcm-client.com/belimo/matching/47012-02400/c8cb570d5127ae96aaae8eee665bcc30,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47012-02400
63,64,Resistors,Vishay,47072,MBB02070C3301F,MBB02070C3301FRP00,https://app.lcm-client.com/belimo/matching/47072/c8cb570d5127ae96aaae8eee665e3813,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47072
64,65,Resistors,Vishay,47080,MBB02070C1603F,MBB02070C1603FRP00,https://app.lcm-client.com/belimo/matching/47080/c8cb570d5127ae96aaae8eee665e5210,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47080
65,66,Resistors,Vishay,47100,MBB02070C4122F,MBB02070C4122FRP00,https://app.lcm-client.com/belimo/matching/47100/c8cb570d5127ae96aaae8eee665e71cc,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47100
66,67,Resistors,Vishay,47101,MBB02070C1479F,MBB02070C1479FRP00,https://app.lcm-client.com/belimo/matching/47101/c8cb570d5127ae96aaae8eee665e9aa1,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47101
67,68,Resistors,Vishay,47102,MBB02070C8871F,MBB02070C8871FRP00,https://app.lcm-client.com/belimo/matching/47102/c8cb570d5127ae96aaae8eee665eb013,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47102
68,69,Resistors,Vishay,47103,MBB02070C2491F,MBB02070C2491FRP00,https://app.lcm-client.com/belimo/matching/47103/c8cb570d5127ae96aaae8eee665ed09c,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47103
69,70,Resistors,Vishay,47122,MBB02070C1583F,MBB02070C1583FRP00,https://app.lcm-client.com/belimo/matching/47122/c8cb570d5127ae96aaae8eee665f1b46,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47122
70,71,Resistors,Vishay,47142,MBB02070C8201F,MBB02070C8201FRP00,https://app.lcm-client.com/belimo/matching/47142/c8cb570d5127ae96aaae8eee66606f98,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47142
71,72,Resistors,Vishay,47145,MBB02070C1203F,MBB02070C1203FRP00,https://app.lcm-client.com/belimo/matching/47145/c8cb570d5127ae96aaae8eee6660a704,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47145
72,73,Resistors,Vishay,47162,MBB02070C5362F,MBB02070C5362FRP00,https://app.lcm-client.com/belimo/matching/47162/c8cb570d5127ae96aaae8eee6660c3c6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47162
73,74,Resistors,Vishay,47168,MBB02070C3003F,MBB02070C3003FRP00,https://app.lcm-client.com/belimo/matching/47168/c8cb570d5127ae96aaae8eee6660fe68,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47168
74,75,Resistors,Vishay,47179,MBB02070C9760F,MBB02070C9760FRP00,https://app.lcm-client.com/belimo/matching/47179/c8cb570d5127ae96aaae8eee666120a3,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47179
75,76,Resistors,Vishay,40412-02701,CRCW06032K70DH,CRCW06032K70DHEAP,https://app.lcm-client.com/belimo/matching/40412-02701/ef351458b324e0850a464074929e4c4e,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/40412-02701
76,77,Resistors,Vishay,40412-02701,CRCW06032K70DK,CRCW06032K70DHEAP,https://app.lcm-client.com/belimo/matching/40412-02701/ef351458b324e0850a464074929e54c2,ok,Automotive,Exption,y,PPM Difference,https://app.lcm-client.com/belimo/part/40412-02701
77,78,Resistors,Vishay,40542,MBB02070C2702F,MBB02070C2702FRP00 ,https://app.lcm-client.com/belimo/matching/40542/ef351458b324e0850a464074929f8a38,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40542
78,79,Resistors,Vishay,40542,MBB0207IC2702F,MBB0207IC2702FRP00,https://app.lcm-client.com/belimo/matching/40542/ef351458b324e0850a464074929f962a,nok,Medical,Yes,y,Missing In LCM,https://app.lcm-client.com/belimo/part/40542
79,80,Resistors,Vishay,40542,MRS25000C2702F,MRS25000C2702FRP00,https://app.lcm-client.com/belimo/matching/40542/ef351458b324e0850a464074929f971d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40542
80,81,Resistors,Vishay,40602-01100,SMM02070C1100F,SMM02070C1100FBS00,https://app.lcm-client.com/belimo/matching/40602-01100/ef351458b324e0850a46407492a0fcf3,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01100
81,82,Resistors,Vishay,40602-01501,MMB02070C1501F,MMB02070C1501FB700,https://app.lcm-client.com/belimo/matching/40602-01501/ef351458b324e0850a46407492a1312e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01501
82,83,Resistors,Vishay,40602-01501,SMM02070C1501F,SMM02070C1501FBS00,https://app.lcm-client.com/belimo/matching/40602-01501/ef351458b324e0850a46407492a13317,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01501
83,84,Resistors,Vishay,40602-01503,MMB02070C1503F,MMB02070C1503FB200,https://app.lcm-client.com/belimo/matching/40602-01503/ef351458b324e0850a46407492a166ca,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01503
84,85,Resistors,Vishay,40602-01503,SMM02070C1503F,SMM02070C1503FBS00,https://app.lcm-client.com/belimo/matching/40602-01503/ef351458b324e0850a46407492a172df,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01503
85,86,Resistors,Vishay,40602-01801,MMB02070C1801F,MMB02070C1801FB700,https://app.lcm-client.com/belimo/matching/40602-01801/ef351458b324e0850a46407492a19e31,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01801
86,87,Resistors,Vishay,40602-01801,SMM02070C1801F,SMM02070C1801FBS00,https://app.lcm-client.com/belimo/matching/40602-01801/ef351458b324e0850a46407492a1adcd,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01801
87,88,Resistors,Vishay,40602-02201,MMB02070C2201F,MMB02070C2201FB700,https://app.lcm-client.com/belimo/matching/40602-02201/ef351458b324e0850a46407492a1e4d1,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02201
88,89,Resistors,Vishay,40602-02201,SMM02070C2201F,SMM02070C2201FBS00,https://app.lcm-client.com/belimo/matching/40602-02201/ef351458b324e0850a46407492a1e7f8,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02201
89,90,Resistors,Vishay,40602-02203,MMB02070C2203F,MMB02070C2203FB200,https://app.lcm-client.com/belimo/matching/40602-02203/ef351458b324e0850a46407492a21787,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02203
90,91,Resistors,Vishay,40602-04701,SMM02070C4701F,SMM02070C4701FBS00,https://app.lcm-client.com/belimo/matching/40602-04701/ef351458b324e0850a46407492a55cd6,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04701
91,92,Resistors,Vishay,40602-04702,MMB02070C4702F,MMB02070C4702FB200,https://app.lcm-client.com/belimo/matching/40602-04702/ef351458b324e0850a46407492a5987a,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04702
92,93,Resistors,Vishay,40602-04702,SMM02070C4702F,SMM02070C4702FBS00 ,https://app.lcm-client.com/belimo/matching/40602-04702/ef351458b324e0850a46407492a59e12,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04702
93,94,Resistors,Vishay,40602-04703,MMB02070C4703F,MMB02070C4703FB200 ,https://app.lcm-client.com/belimo/matching/40602-04703/ef351458b324e0850a46407492a5c84a,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04703
94,95,Resistors,Vishay,40602-04703,SMM02070C4703F,SMM02070C4703FBS00,https://app.lcm-client.com/belimo/matching/40602-04703/ef351458b324e0850a46407492a5cef1,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04703
95,96,Resistors,Vishay,40602-05100,MMB02070C5100F,MMB02070C5100FB700,https://app.lcm-client.com/belimo/matching/40602-05100/ef351458b324e0850a46407492a6213a,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05100
96,97,Resistors,Vishay,40602-05100,SMM02070C5100F,SMM02070C5100FBP00,https://app.lcm-client.com/belimo/matching/40602-05100/ef351458b324e0850a46407492a628ff,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05100
97,98,Resistors,Vishay,40602-05603,MMB02070C5603F,MMB02070C5603FB700,https://app.lcm-client.com/belimo/matching/40602-05603/ef351458b324e0850a46407492a653e8,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05603
98,99,Resistors,Vishay,40602-05603,SMM02070C5603F,SMM02070C5603FBS00,https://app.lcm-client.com/belimo/matching/40602-05603/ef351458b324e0850a46407492a65dfb,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05603
99,100,Resistors,Vishay,40602-05607,MMB02070C5607F,MMB02070C5607FB200,https://app.lcm-client.com/belimo/matching/40602-05607/ef351458b324e0850a46407492a66cc9,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05607
100,101,Resistors,Vishay,40613-02002,MCU08050D2002B,MCU08050D2002BP500,https://app.lcm-client.com/belimo/matching/40613-02002/a57dd45b8b8bfbbc6b72118464d889cb,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-02002
101,102,Resistors,Vishay,40613-02432,MCU08050D2431B,MCU08050D2431BP500,https://app.lcm-client.com/belimo/matching/40613-02432/a57dd45b8b8bfbbc6b72118464d8b980,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-02432
102,103,Resistors,Vishay,40613-03321,MCU08050D3321B,MCU08050D3321BP500,https://app.lcm-client.com/belimo/matching/40613-03321/a57dd45b8b8bfbbc6b72118464d8ef7d,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-03321
103,104,Resistors,Vishay,40613-03601,MCU08050D3601B,MCU08050D3601BP500,https://app.lcm-client.com/belimo/matching/40613-03601/a57dd45b8b8bfbbc6b72118464d918c6,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-03601
104,105,Resistors,Vishay,40613-04022,MCU08050D4022B,MCU08050D4022BP500,https://app.lcm-client.com/belimo/matching/40613-04022/a57dd45b8b8bfbbc6b72118464da3edf,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-04022
105,106,Resistors,Vishay,40613-06802,MCU08050D6802B,MCU08050D6802BP500,https://app.lcm-client.com/belimo/matching/40613-06802/a57dd45b8b8bfbbc6b72118464da579b,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-06802
106,107,Resistors,Vishay,40613-07871,MCU08050D7871B,MCU08050D7871BP500,https://app.lcm-client.com/belimo/matching/40613-07871/a57dd45b8b8bfbbc6b72118464da6f4d,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-07871
107,108,Resistors,Vishay,40613-09762,MCU08050D9762B,MCU08050D9762BP500,https://app.lcm-client.com/belimo/matching/40613-09762/a57dd45b8b8bfbbc6b72118464da97e7,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-09762
108,109,Resistors,Vishay,40617-01204,MMA02040C1205F,MMA02040C1205FB300,https://app.lcm-client.com/belimo/matching/40617-01204/a57dd45b8b8bfbbc6b72118464e1f209,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01204
109,110,Resistors,Vishay,40617-01208,MMA02040C1208F,MMA02040C1208FB300,https://app.lcm-client.com/belimo/matching/40617-01208/a57dd45b8b8bfbbc6b72118464e26c1f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01208
110,111,Resistors,Vishay,47215,MBB02070C3603F,MBB02070C3603FRP00,https://app.lcm-client.com/belimo/matching/47215/a57dd45b8b8bfbbc6b72118464fa91aa,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47215
111,112,Resistors,Vishay,47232,MBB02070C5622F,MBB02070C5622FRP00,https://app.lcm-client.com/belimo/matching/47232/a57dd45b8b8bfbbc6b72118464fabb7c,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47232
112,113,Resistors,Vishay,47245,MBB02070C1330F,MBB02070C1330FRP00,https://app.lcm-client.com/belimo/matching/47245/a57dd45b8b8bfbbc6b72118464fadaf4,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47245
113,114,Resistors,Vishay,47251,MBB02070C1371F,MBB02070C1371FRP00,https://app.lcm-client.com/belimo/matching/47251/a57dd45b8b8bfbbc6b72118464faf77a,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47251
114,115,Resistors,Vishay,47274,MBB02070C1108F,MBB02070C1108FRP00,https://app.lcm-client.com/belimo/matching/47274/a57dd45b8b8bfbbc6b72118464fb1287,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47274
115,116,Resistors,Vishay,47313,MBB02070C3303F,MBB02070C3303FRP00,https://app.lcm-client.com/belimo/matching/47313/a57dd45b8b8bfbbc6b72118464fb22db,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47313
116,117,Resistors,Vishay,47315,MBB02070C1604F,MBB02070C1604FRP00,https://app.lcm-client.com/belimo/matching/47315/a57dd45b8b8bfbbc6b72118464fb3e0d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47315
117,118,Resistors,Vishay,47316,MBB02070C4704F,MBB02070C4704FRP00,https://app.lcm-client.com/belimo/matching/47316/a57dd45b8b8bfbbc6b72118464fb5c4f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47316
118,119,Resistors,Vishay,47337,MBB02070C2002F,MBB02070C2002FRP00,https://app.lcm-client.com/belimo/matching/47337/a57dd45b8b8bfbbc6b72118464fb756d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47337
119,120,Resistors,Vishay,47339,MBB02070C6802F,MBB02070C6802FRP00,https://app.lcm-client.com/belimo/matching/47339/a57dd45b8b8bfbbc6b72118464fb8f39,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47339
120,121,Resistors,Vishay,40617-06801,SMM02040C6801F,SMM02040C6801FB000,https://app.lcm-client.com/belimo/matching/40617-06801/c8cb570d5127ae96aaae8eee664ba638,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06801
121,122,Resistors,Vishay,40617-06807,MMA02040C6807F,MMA02040C6807FB300,https://app.lcm-client.com/belimo/matching/40617-06807/c8cb570d5127ae96aaae8eee664c0b79,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06807
122,123,Resistors,Vishay,40617-06807,SMM02040B6807J,SMM02040B6807JB000,https://app.lcm-client.com/belimo/matching/40617-06807/c8cb570d5127ae96aaae8eee664c1061,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06807
123,124,Resistors,Vishay,40617-07502,MMA02040C7502F,MMA02040C7502FB200,https://app.lcm-client.com/belimo/matching/40617-07502/c8cb570d5127ae96aaae8eee664c7046,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-07502
124,125,Resistors,Vishay,40617-07502,SMM02040C7502F,SMM02040C7502FB000,https://app.lcm-client.com/belimo/matching/40617-07502/c8cb570d5127ae96aaae8eee664c780d,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-07502
125,126,Resistors,Vishay,40617-09107,MMA02040C9107F,MMA02040C9107FB300,https://app.lcm-client.com/belimo/matching/40617-09107/c8cb570d5127ae96aaae8eee664cd373,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-09107
126,127,Resistors,Vishay,40617-09107,SMM02040C9107F,SMM02040C9107FB000,https://app.lcm-client.com/belimo/matching/40617-09107/c8cb570d5127ae96aaae8eee664cd73a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-09107
127,128,Resistors,Vishay,40618-01001,CRCW25121K00JN,CRCW25121K00JNEG,https://app.lcm-client.com/belimo/matching/40618-01001/c8cb570d5127ae96aaae8eee664d0cdc,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/40618-01001
128,129,Resistors,Vishay,40618-01501,CRCW25121K50JN,CRCW25121K50JNEG,https://app.lcm-client.com/belimo/matching/40618-01501/c8cb570d5127ae96aaae8eee664d2f90,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/40618-01501
129,130,Resistors,Vishay,40618-02401,CRCW25122K40JN,CRCW25122K40JNEG,https://app.lcm-client.com/belimo/matching/40618-02401/c8cb570d5127ae96aaae8eee664d5a8d,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/40618-02401
130,131,Resistors,Vishay,47123,MBB02070C1873F,MBB02070C1873FRP00,https://app.lcm-client.com/belimo/matching/47123/c8cb570d5127ae96aaae8eee665f3f95,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47123
131,132,Resistors,Vishay,47125,MBB02070C1008F,MBB02070C1008FRP00,https://app.lcm-client.com/belimo/matching/47125/c8cb570d5127ae96aaae8eee665f5b74,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47125
132,133,Resistors,Vishay,47131,MBB02070C6193F,MBB02070C6193FRP00,https://app.lcm-client.com/belimo/matching/47131/c8cb570d5127ae96aaae8eee665f8495,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47131
133,134,Resistors,Vishay,47132,MBB02070C3323F,MBB02070C3323FRP00,https://app.lcm-client.com/belimo/matching/47132/c8cb570d5127ae96aaae8eee665fa357,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47132
134,135,Resistors,Vishay,47133,MBB02070C1433F,MBB02070C1433FRP00,https://app.lcm-client.com/belimo/matching/47133/c8cb570d5127ae96aaae8eee665fc181,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47133
135,136,Resistors,Vishay,47137,MBB02070C4700F,MBB02070C4700FRP00,https://app.lcm-client.com/belimo/matching/47137/c8cb570d5127ae96aaae8eee665fddc6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47137
136,137,Resistors,Vishay,47138,MBB02070C1653F,MBB02070C1653FRP00,https://app.lcm-client.com/belimo/matching/47138/c8cb570d5127ae96aaae8eee6660128b,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47138
137,138,Resistors,Vishay,47139,MBB02070C9104F,MBB02070C9104FRP00,https://app.lcm-client.com/belimo/matching/47139/c8cb570d5127ae96aaae8eee66602471,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47139
138,139,Resistors,Vishay,47140,MBB02070C3652F,MBB02070C3652FRP00,https://app.lcm-client.com/belimo/matching/47140/c8cb570d5127ae96aaae8eee6660397f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47140
139,140,Resistors,Vishay,47141,MBB02070C4873F,MBB02070C4873FRP00,https://app.lcm-client.com/belimo/matching/47141/c8cb570d5127ae96aaae8eee66605f85,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47141
140,141,Resistors,Vishay,40602-02203,SMM02070C2203F,SMM02070C2203FBS00,https://app.lcm-client.com/belimo/matching/40602-02203/ef351458b324e0850a46407492a2262b,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02203
141,142,Resistors,Vishay,40602-02204,MMB02070C2204F,MMB02070C2204FB200,https://app.lcm-client.com/belimo/matching/40602-02204/ef351458b324e0850a46407492a250b9,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02204
142,143,Resistors,Vishay,40602-02204,SMM02070C2204F,SMM02070C2204FBS00,https://app.lcm-client.com/belimo/matching/40602-02204/ef351458b324e0850a46407492a2542a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02204
143,144,Resistors,Vishay,40602-02401,MMB02070C2401F,MMB02070C2401FB200,https://app.lcm-client.com/belimo/matching/40602-02401/ef351458b324e0850a46407492a28bcc,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02401
144,145,Resistors,Vishay,40602-02401,SMM02070C2401F,SMM02070C2401FBS00,https://app.lcm-client.com/belimo/matching/40602-02401/ef351458b324e0850a46407492a295bf,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02401
145,146,Resistors,Vishay,40602-02402,MMB02070C2402F,MMB02070C2402FB200,https://app.lcm-client.com/belimo/matching/40602-02402/ef351458b324e0850a46407492a2d0e4,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02402
146,147,Resistors,Vishay,40602-02402,SMM02070C2402F,SMM02070C2402FBS00,https://app.lcm-client.com/belimo/matching/40602-02402/ef351458b324e0850a46407492a2d8ad,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02402
147,148,Resistors,Vishay,40602-02403,MMB02070C2403F,MMB02070C2403FB700,https://app.lcm-client.com/belimo/matching/40602-02403/ef351458b324e0850a46407492a2f357,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02403
148,149,Resistors,Vishay,40602-02403,SMM02070C2403F,SMM02070C2403FBP00,https://app.lcm-client.com/belimo/matching/40602-02403/ef351458b324e0850a46407492a2ffb8,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02403
149,150,Resistors,Vishay,40602-02491,MMB02070C2491F,MMB02070C2491FB700,https://app.lcm-client.com/belimo/matching/40602-02491/ef351458b324e0850a46407492a32ce6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02491
150,151,Resistors,Vishay,40602-06209,MMB02070C6209F,MMB02070C6209FB200,https://app.lcm-client.com/belimo/matching/40602-06209/ef351458b324e0850a46407492a6a237,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-06209
151,152,Resistors,Vishay,40602-06209,SMM02070C6209F,SMM02070C6209FBP00,https://app.lcm-client.com/belimo/matching/40602-06209/ef351458b324e0850a46407492a6a9a2,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-06209
152,153,Resistors,Vishay,40602-07502,MMB02070C7502F,MMB02070C7502FB700,https://app.lcm-client.com/belimo/matching/40602-07502/ef351458b324e0850a46407492a6e1c2,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-07502
153,154,Resistors,Vishay,40602-07502,SMM02070C7502F,SMM02070C7502FBS00,https://app.lcm-client.com/belimo/matching/40602-07502/ef351458b324e0850a46407492a6ee06,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-07502
154,155,Resistors,Vishay,40602-08063,MMB02070C8063F,MMB02070C8063FB700,https://app.lcm-client.com/belimo/matching/40602-08063/ef351458b324e0850a46407492a7303b,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08063
155,156,Resistors,Vishay,40602-08063,SMM02070C8063F,SMM02070C8063FBP00,https://app.lcm-client.com/belimo/matching/40602-08063/ef351458b324e0850a46407492a737bf,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08063
156,157,Resistors,Vishay,40602-08202,MMB02070C8202F,MMB02070C8202FB300,https://app.lcm-client.com/belimo/matching/40602-08202/ef351458b324e0850a46407492a76d3e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08202
157,158,Resistors,Vishay,40602-08202,SMM02070C8202F,SMM02070C8202FBS00,https://app.lcm-client.com/belimo/matching/40602-08202/ef351458b324e0850a46407492a770da,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08202
158,159,Resistors,Vishay,40602-08207,MMB02070C8207F,MMB02070C8207FB200,https://app.lcm-client.com/belimo/matching/40602-08207/ef351458b324e0850a46407492a78da5,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08207
159,160,Resistors,Vishay,40602-09100,MMB02070C9100F,MMB02070C9100FB700,https://app.lcm-client.com/belimo/matching/40602-09100/ef351458b324e0850a46407492a7a753,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-09100
160,161,Resistors,Vishay,40617-01108,SMM02040C1108F,SMM02040C1108FB300,https://app.lcm-client.com/belimo/matching/40617-01108/ef351458b324e0850a46407492bb4cca,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01108
161,162,Resistors,Vishay,40617-01201,MMA02040C1201F,MMA02040C1201FB300,https://app.lcm-client.com/belimo/matching/40617-01201/ef351458b324e0850a46407492bb95e2,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01201
162,163,Resistors,Vishay,40617-01201,SMM02040C1201F,SMM02040C1201FB000,https://app.lcm-client.com/belimo/matching/40617-01201/ef351458b324e0850a46407492bb972a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01201
163,164,Resistors,Vishay,40617-01202,MMA02040C1202F,MMA02040C1202FB000,https://app.lcm-client.com/belimo/matching/40617-01202/ef351458b324e0850a46407492bbf6a3,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01202
164,165,Resistors,Vishay,40617-01202,SMM02040C1202F,SMM02040C1202FB000,https://app.lcm-client.com/belimo/matching/40617-01202/ef351458b324e0850a46407492bbfc0f,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01202
165,166,Resistors,Vishay,40617-01801,MMA02040C1801F,MMA02040C1801FB000,https://app.lcm-client.com/belimo/matching/40617-01801/ef351458b324e0850a46407492be01bb,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01801
166,167,Resistors,Vishay,40617-01801,SMM02040C1801F,SMM02040C1801FB000,https://app.lcm-client.com/belimo/matching/40617-01801/ef351458b324e0850a46407492be0e90,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01801
167,168,Resistors,Vishay,40617-01808,MMA02040C1808F,MMA02040C1808FB000,https://app.lcm-client.com/belimo/matching/40617-01808/ef351458b324e0850a46407492be536e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01808
168,169,Resistors,Vishay,40617-01808,SMM02040C1808F,SMM02040C1808FB300,https://app.lcm-client.com/belimo/matching/40617-01808/ef351458b324e0850a46407492be5915,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01808
169,170,Resistors,Vishay,40617-02002,MMA02040C2002F,MMA02040C2002FB300,https://app.lcm-client.com/belimo/matching/40617-02002/ef351458b324e0850a46407492becaa5,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02002
170,171,Resistors,Vishay,40754,PR02FS0205608K,PR02FS0205608KR500,https://app.lcm-client.com/belimo/matching/40754/ef351458b324e0850a46407492c56031,nok,Automotive,Yes,y,Requires Update,https://app.lcm-client.com/belimo/part/40754
171,172,Resistors,Vishay,40754-01502,CPF215K000JN,CPF215K000JNEE6,https://app.lcm-client.com/belimo/matching/40754/ef351458b324e0850a46407492c56031,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40754-01502
172,173,Resistors,Vishay,40754-01502,PR02000201502J,PR02000201502JR500,https://app.lcm-client.com/belimo/matching/40754-01502/ef351458b324e0850a46407492c57dde,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40754-01502
173,174,Resistors,Vishay,40754-08201,CPF28K2000JN,CPF28K2000JNEE6,https://app.lcm-client.com/belimo/matching/40754-08201/ef351458b324e0850a46407492c580d0,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40754-08201
174,175,Resistors,Vishay,40754-08201,PR02000208201J,PR02000208201JR500,https://app.lcm-client.com/belimo/matching/40754-08201/ef351458b324e0850a46407492c5908d,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40754-08201
175,176,Resistors,Vishay,40754-15608,CPF25R6000JN,CPF25R6000JNEE6,https://app.lcm-client.com/belimo/matching/40754-15608/ef351458b324e0850a46407492c5b5db,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40754-15608
176,177,Resistors,Vishay,40754-15608,PR02000205608J,PR02000205608JR500,https://app.lcm-client.com/belimo/matching/40754-15608/ef351458b324e0850a46407492c5bcec,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40754-15608
177,178,Resistors,Vishay,40850,MBB02070C1101F,MBB02070C1101FRP00,https://app.lcm-client.com/belimo/matching/40850/ef351458b324e0850a46407492c6a39a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40850
178,179,Resistors,Vishay,40850,MRS25000C1101F,MRS25000C1101FRP00,https://app.lcm-client.com/belimo/matching/40850/ef351458b324e0850a46407492c6a870,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40850
179,180,Resistors,Vishay,40851,MBB02070C1501F,MBB02070C1501FRP00,https://app.lcm-client.com/belimo/matching/40851/ef351458b324e0850a46407492c6be78,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40851
180,181,Resistors,Vishay,40862,MRS25000C2203F,MRS25000C2203FRP00,https://app.lcm-client.com/belimo/matching/40862/ef351458b324e0850a46407492c741c4,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40862
181,182,Resistors,Vishay,40867,MBB02070C2403F,MBB02070C2403FRP00,https://app.lcm-client.com/belimo/matching/40867/ef351458b324e0850a46407492c751d7,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40867
182,183,Resistors,Vishay,40867,MRS25000C2403F,MRS25000C2403FRP00,https://app.lcm-client.com/belimo/matching/40867/ef351458b324e0850a46407492c755f8,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40867
183,184,Resistors,Vishay,40877,MBB02070C8661F,MBB02070C8661FRP00,https://app.lcm-client.com/belimo/matching/40877/ef351458b324e0850a46407492c770f6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40877
184,185,Resistors,Vishay,40877,MRS25000C8661F,MRS25000C8661FRP00,https://app.lcm-client.com/belimo/matching/40877/ef351458b324e0850a46407492c77fc8,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40877
185,186,Resistors,Vishay,40885,MBB02070C4221F,MBB02070C4221FRP00,https://app.lcm-client.com/belimo/matching/40885/ef351458b324e0850a46407492c78d94,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40885
186,187,Resistors,Vishay,40885,MRS25000C4221F,MRS25000C4221FRP00,https://app.lcm-client.com/belimo/matching/40885/ef351458b324e0850a46407492c791fe,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40885
187,188,Resistors,Vishay,40897,MBB02070C1009F,MBB02070C1009FRP00,https://app.lcm-client.com/belimo/matching/40897/ef351458b324e0850a46407492c85cab,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40897
188,189,Resistors,Vishay,40897,MRS25000C1009F,MRS25000C1009FRP00,https://app.lcm-client.com/belimo/matching/40897/ef351458b324e0850a46407492c85f06,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40897
189,190,Resistors,Vishay,40898,MBB02070C1102F,MBB02070C1102FRP00,https://app.lcm-client.com/belimo/matching/40898/ef351458b324e0850a46407492c87371,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40898
190,191,Resistors,Vishay,40926,MRS25000C8202F,MRS25000C8202FRP00,https://app.lcm-client.com/belimo/matching/40926/ef351458b324e0850a46407492c9893e,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40926
191,192,Resistors,Vishay,40927,MBB02070C1003F,MBB02070C1003FRP00,https://app.lcm-client.com/belimo/matching/40927/ef351458b324e0850a46407492c99e8a,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40927
192,193,Resistors,Vishay,40927,MRS25000C1003F,MRS25000C1003FRP00,https://app.lcm-client.com/belimo/matching/40927/ef351458b324e0850a46407492c9aaf7,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40927
193,194,Resistors,Vishay,40934,MRS25000C6202F,MRS25000C6202FRP00,https://app.lcm-client.com/belimo/matching/40934/ef351458b324e0850a46407492c9d6ee,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40934
194,195,Resistors,Vishay,40941,MBB02070C5602F,MBB02070C5602FRP00,https://app.lcm-client.com/belimo/matching/40941/ef351458b324e0850a46407492c9f1f8,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40941
195,196,Resistors,Vishay,40941,MRS25000C5602F,MRS25000C5602FRP00,https://app.lcm-client.com/belimo/matching/40941/ef351458b324e0850a46407492c9f940,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40941
196,197,Resistors,Vishay,40949,MBB02070C1500F,MBB02070C1500FRP00,https://app.lcm-client.com/belimo/matching/40949/ef351458b324e0850a46407492ca0e61,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40949
197,198,Resistors,Vishay,40949,MRS25000C1500F,MRS25000C1500FRP00,https://app.lcm-client.com/belimo/matching/40949/ef351458b324e0850a46407492ca16be,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40949
198,199,Resistors,Vishay,41237-01102,MMA02040D1102C,MMA02040D1102CB300,https://app.lcm-client.com/belimo/matching/40949/ef351458b324e0850a46407492ca16be,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/41237-01102
199,200,Resistors,Vishay,41749-02200,CMB02070X2200G,CMB02070X2200GB700,https://app.lcm-client.com/belimo/matching/41749-02200/ef351458b324e0850a46407492cb2e74,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/41749-02200
200,201,Resistors,Vishay,41861-02001,MCS04020D2001B,MCS04020D2001BE000,https://app.lcm-client.com/belimo/matching/41861-02001/ef351458b324e0850a46407492cd04a3,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/41861-02001
201,202,Resistors,Vishay,41861-02053,MCS04020D2053B,MCS04020D2053BE000,https://app.lcm-client.com/belimo/matching/41861-02053/ef351458b324e0850a46407492cd3674,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/41861-02053
202,203,Resistors,Vishay,41861-02702,MCS04020D2702B,MCS04020D2702BE000,https://app.lcm-client.com/belimo/matching/41861-02702/ef351458b324e0850a46407492cd5b69,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/41861-02702
203,204,Resistors,Vishay,41861-06802,MCS04020D6802B,MCS04020D6802BE000,https://app.lcm-client.com/belimo/matching/41861-06802/ef351458b324e0850a46407492cd9fd4,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/41861-06802
204,205,Resistors,Vishay,47012-02550,MBB02070C2550F,MBB02070C2550FRP00,https://app.lcm-client.com/belimo/matching/47012-02550/ef351458b324e0850a46407492d6899c,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/47012-02550
205,206,Resistors,Vishay,47012-02550,MRS25000C2550F,MRS25000C2550FRP00,https://app.lcm-client.com/belimo/matching/47012-02550/ef351458b324e0850a46407492d68c0f,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-02550
206,207,Resistors,Vishay,47012-03303,MRS25000C3303F,MRS25000C3303FRP00,https://app.lcm-client.com/belimo/matching/47012-03303/ef351458b324e0850a46407492d6aa08,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-03303
207,208,Resistors,Vishay,47012-03308,MBB02070C3308F,MBB02070C3308FRP00,https://app.lcm-client.com/belimo/matching/47012-03308/ef351458b324e0850a46407492d6c42d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47012-03308
208,209,Resistors,Vishay,47012-03308,MRS25000C3308F,MRS25000C3308FRP00,https://app.lcm-client.com/belimo/matching/47012-03308/ef351458b324e0850a46407492d6d03b,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-03308
209,210,Resistors,Vishay,47012-03830,MBB02070C3830F,MBB02070C3830FRP00,https://app.lcm-client.com/belimo/matching/47012-03830/ef351458b324e0850a46407492d6eaad,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/47012-03830
210,211,Resistors,Vishay,47042,MBB02070C1503F,MBB02070C1503FRP00,https://app.lcm-client.com/belimo/matching/47042/ef351458b324e0850a46407492d86be4,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/47042
211,212,Resistors,Vishay,47355-01279,MBB02070C1279F,MBB02070C1279FRP00,https://app.lcm-client.com/belimo/matching/47355-01279/ef351458b324e0850a46407492db9a16,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01279
212,213,Resistors,Vishay,47355-01279,MRS25000C1279F,MRS25000C1279FRP00,https://app.lcm-client.com/belimo/matching/47355-01279/ef351458b324e0850a46407492dba77c,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01279
213,214,Resistors,Vishay,47355-01501,MRS25000C1501F,MRS25000C1501FRP00,https://app.lcm-client.com/belimo/matching/47355-01501/ef351458b324e0850a46407492dbc315,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01501
214,215,Resistors,Vishay,47355-01653,MRS25000C1653F,MRS25000C1653FRP00,https://app.lcm-client.com/belimo/matching/47355-01653/ef351458b324e0850a46407492dbf3fd,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01653
215,216,Resistors,Vishay,47355-02671,MRS25000C2671F,MRS25000C2671FRP00,https://app.lcm-client.com/belimo/matching/47355-02671/ef351458b324e0850a46407492dc5b8c,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-02671
216,217,Resistors,Vishay,47355-03301,MRS25000C3301F,MRS25000C3301FRP00,https://app.lcm-client.com/belimo/matching/47355-03301/ef351458b324e0850a46407492dc82bf,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-03301
217,218,Resistors,Vishay,47355-05609,MBB02070C5609F,MBB02070C5609FRP00,https://app.lcm-client.com/belimo/matching/47355-05609/ef351458b324e0850a46407492dcab28,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-05609
218,219,Resistors,Vishay,47355-05609,MRS25000C5609F,MRS25000C5609FRP00,https://app.lcm-client.com/belimo/matching/47355-05609/ef351458b324e0850a46407492dcb421,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-05609
219,220,Resistors,Vishay,47355-05762,MBB02070C5762F,MBB02070C5762FRP00,https://app.lcm-client.com/belimo/matching/47355-05762/ef351458b324e0850a46407492dcdf45,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-05762
220,221,Resistors,Vishay,40617-01800,SMM02040C1800F,SMM02040C1800FB000,https://app.lcm-client.com/belimo/matching/40617-01800/a57dd45b8b8bfbbc6b72118464e48be7,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01800
221,222,Resistors,Vishay,40617-03001,MMA02040C3001F,MMA02040C3001FB000,https://app.lcm-client.com/belimo/matching/40617-03001/a57dd45b8b8bfbbc6b72118464e73cce,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03001
222,223,Resistors,Vishay,40617-03001,SMM02040C3001F,SMM02040C3001FB000,https://app.lcm-client.com/belimo/matching/40617-03001/a57dd45b8b8bfbbc6b72118464e74406,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03001
223,224,Resistors,Vishay,40617-03008,MMA02040C3008F,MMA02040C3008FB000,https://app.lcm-client.com/belimo/matching/40617-03008/a57dd45b8b8bfbbc6b72118464e79b6e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03008
224,225,Resistors,Vishay,40617-03008,SMM02040C3008F,SMM02040C3008FB000,https://app.lcm-client.com/belimo/matching/40617-03008/a57dd45b8b8bfbbc6b72118464e7a30e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03008
225,226,Resistors,Vishay,40617-03301,MMA02040C3301F,MMA02040C3301FB000,https://app.lcm-client.com/belimo/matching/40617-03301/a57dd45b8b8bfbbc6b72118464e81354,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03301
226,227,Resistors,Vishay,40617-03301,SMM02040C3301F,SMM02040C3301FB000,https://app.lcm-client.com/belimo/matching/40617-03301/a57dd45b8b8bfbbc6b72118464e818d6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03301
227,228,Resistors,Vishay,40617-03303,MMA02040C3303F,MMA02040C3303FB000,https://app.lcm-client.com/belimo/matching/40617-03303/a57dd45b8b8bfbbc6b72118464e88cee,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03303
228,229,Resistors,Vishay,40617-03303,SMM02040C3303F,SMM02040C3303FB000,https://app.lcm-client.com/belimo/matching/40617-03303/a57dd45b8b8bfbbc6b72118464e896d0,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03303
229,230,Resistors,Vishay,40617-03901,MMA02040C3901F,MMA02040C3901FB000,https://app.lcm-client.com/belimo/matching/40617-03901/a57dd45b8b8bfbbc6b72118464e90c53,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03901
230,231,Resistors,Vishay,47001,MBB02070C1202F,MBB02070C1202FRP00,https://app.lcm-client.com/belimo/matching/47001/c8cb570d5127ae96aaae8eee665a9f99,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47001
231,232,Resistors,Vishay,47002,MBB02070C1000F,MBB02070C1000FRP00,https://app.lcm-client.com/belimo/matching/47002/c8cb570d5127ae96aaae8eee665abee6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47002
232,233,Resistors,Vishay,47004,MBB02070C1804F,MBB02070C1804FRP00,https://app.lcm-client.com/belimo/matching/47004/c8cb570d5127ae96aaae8eee665ae642,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47004
233,234,Resistors,Vishay,47007,MBB02070C3002F,MBB02070C3002FRP00,https://app.lcm-client.com/belimo/matching/47007/c8cb570d5127ae96aaae8eee665b0d45,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47007
234,235,Resistors,Vishay,47008,MBB02070C4701F,MBB02070C4701FRP00,https://app.lcm-client.com/belimo/matching/47008/c8cb570d5127ae96aaae8eee665b34df,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47008
235,236,Resistors,Vishay,47011,MBB02070C1502F,MBB02070C1502FRP00,https://app.lcm-client.com/belimo/matching/47011/c8cb570d5127ae96aaae8eee665b5e12,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47011
236,237,Resistors,Vishay,47012-01001,MBB02070C1001F,MBB02070C1001FRP00,https://app.lcm-client.com/belimo/matching/47012-01001/c8cb570d5127ae96aaae8eee665b7c87,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47012-01001
237,238,Resistors,Vishay,47012-01001,MRS25000C1001F,MRS25000C1001FRP00,https://app.lcm-client.com/belimo/matching/47012-01001/c8cb570d5127ae96aaae8eee665b7ef3,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-01001
238,239,Resistors,Vishay,47012-02371,MBB02070C2371F,MBB02070C2371FRP00,https://app.lcm-client.com/belimo/matching/47012-02371/c8cb570d5127ae96aaae8eee665b92cf,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47012-02371
239,240,Resistors,Vishay,40602-01100,MMB02070C1100F,MMB02070C1100FB700,https://app.lcm-client.com/belimo/matching/40602-01100/ef351458b324e0850a46407492a0f34b,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01100
240,241,Resistors,Vishay,40602-02491,SMM02070C2491F,SMM02070C2491FBP00,https://app.lcm-client.com/belimo/matching/40602-02491/ef351458b324e0850a46407492a32d66,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02491
241,242,Resistors,Vishay,40602-02703,MMB02070C2703F,MMB02070C2703FB700,https://app.lcm-client.com/belimo/matching/40602-02703/ef351458b324e0850a46407492a36b57,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02703
242,243,Resistors,Vishay,40602-02703,SMM02070C2703F,SMM02070C2703FBS00,https://app.lcm-client.com/belimo/matching/40602-02703/ef351458b324e0850a46407492a3748f,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02703
243,244,Resistors,Vishay,40602-03000,MMB02070C3000F,MMB02070C3000FB700,https://app.lcm-client.com/belimo/matching/40602-03000/ef351458b324e0850a46407492a3b4b3,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-03000
244,245,Resistors,Vishay,40602-03000,SMM02070C3000F,SMM02070C3000FBS00,https://app.lcm-client.com/belimo/matching/40602-03000/ef351458b324e0850a46407492a3be47,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-03000
245,246,Resistors,Vishay,40602-03303,MMB02070C3303F,MMB02070C3303FB700,https://app.lcm-client.com/belimo/matching/40602-03303/ef351458b324e0850a46407492a3dded,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-03303
246,247,Resistors,Vishay,40602-03303,SMM02070C3303F,SMM02070C3303FBS00,https://app.lcm-client.com/belimo/matching/40602-03303/ef351458b324e0850a46407492a3e67a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-03303
247,248,Resistors,Vishay,40602-04700,MMB02070C4700F,MMB02070C4700FB700,https://app.lcm-client.com/belimo/matching/40602-04700/ef351458b324e0850a46407492a51eab,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04700
248,249,Resistors,Vishay,40602-04700,SMM02070C4700F,SMM02070C4700FBP00,https://app.lcm-client.com/belimo/matching/40602-04700/ef351458b324e0850a46407492a52341,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04700
249,250,Resistors,Vishay,40617-01108,MMA02040C1108F,MMA02040C1108FB000,https://app.lcm-client.com/belimo/matching/40617-01108/ef351458b324e0850a46407492bb453c,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01108
250,251,Resistors,Vishay,40617-02002,SMM02040C2002F,SMM02040C2002FB000,https://app.lcm-client.com/belimo/matching/40617-02002/ef351458b324e0850a46407492bed203,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02002
251,252,Resistors,Vishay,40617-02008,MMA02040C2008F,MMA02040C2008FB000,https://app.lcm-client.com/belimo/matching/40617-02008/ef351458b324e0850a46407492bf3690,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02008
252,253,Resistors,Vishay,40617-02008,SMM02040C2008F,SMM02040C2008FB000,https://app.lcm-client.com/belimo/matching/40617-02008/ef351458b324e0850a46407492bf3890,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02008
253,254,Resistors,Vishay,40617-02201,MMA02040C2001F,MMA02040C2001FB000,https://app.lcm-client.com/belimo/matching/40617-02201/ef351458b324e0850a46407492bfa0e4,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02201
254,255,Resistors,Vishay,40617-02201,SMM02040C2201F,SMM02040C2201FB000,https://app.lcm-client.com/belimo/matching/40617-02201/ef351458b324e0850a46407492bfaa90,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02201
255,256,Resistors,Vishay,40617-02202,SMM02040C2202F,SMM02040C2202FB000,https://app.lcm-client.com/belimo/matching/40617-02202/ef351458b324e0850a46407492c02755,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02202
256,257,Resistors,Vishay,40617-02402,MMA02040C2402F,MMA02040C2402FB000,https://app.lcm-client.com/belimo/matching/40617-02402/ef351458b324e0850a46407492c086bf,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02402
257,258,Resistors,Vishay,40617-02402,SMM02040C2402F,SMM02040C2402FB000,https://app.lcm-client.com/belimo/matching/40617-02402/ef351458b324e0850a46407492c09313,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02402
258,259,Resistors,Vishay,40617-02408,MMA02040C2408F,MMA02040C2408FB000,https://app.lcm-client.com/belimo/matching/40617-02408/ef351458b324e0850a46407492c0cc99,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02408
259,260,Resistors,Vishay,40862,MBB02070C2203F,MBB02070C2203FRP00,https://app.lcm-client.com/belimo/matching/40862/ef351458b324e0850a46407492c74003,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40862
260,261,Resistors,Vishay,40898,MRS25000C1102F,MRS25000C1102FRP00,https://app.lcm-client.com/belimo/matching/40898/ef351458b324e0850a46407492c879f0,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40898
261,262,Resistors,Vishay,40901,MBB02070C4992F,MBB02070C4992FRP00,https://app.lcm-client.com/belimo/matching/40901/ef351458b324e0850a46407492c8980e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40901
262,263,Resistors,Vishay,40901,MRS25000C4992F,MRS25000C4992FRP00,https://app.lcm-client.com/belimo/matching/40901/ef351458b324e0850a46407492c8a5f3,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40901
263,264,Resistors,Vishay,40913,MBB02070C2201F,MBB02070C2201FRP00,https://app.lcm-client.com/belimo/matching/40913/ef351458b324e0850a46407492c8cd11,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40913
264,265,Resistors,Vishay,40913,MRS25000C2201F,MRS25000C2201FRP00,https://app.lcm-client.com/belimo/matching/40913/ef351458b324e0850a46407492c8ced5,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40913
265,266,Resistors,Vishay,40915,MRS25000C6802F,MRS25000C6802FRP00,https://app.lcm-client.com/belimo/matching/40915/ef351458b324e0850a46407492c8f08b,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40915
266,267,Resistors,Vishay,40919,MRS25000C8201F,MRS25000C8201FRP00,https://app.lcm-client.com/belimo/matching/40919/ef351458b324e0850a46407492c91498,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40919
267,268,Resistors,Vishay,40924,MBB02070C1002F,MBB02070C1002FRP00,https://app.lcm-client.com/belimo/matching/40924/ef351458b324e0850a46407492c95e69,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40924
268,269,Resistors,Vishay,40924,MRS25000C1002F,MRS25000C1002FRP00,https://app.lcm-client.com/belimo/matching/40924/ef351458b324e0850a46407492c9667f,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40924
269,270,Resistors,Vishay,41861-01003,MCS04020D1003B,MCS04020D1003BE500,https://app.lcm-client.com/belimo/matching/41861-01003/ef351458b324e0850a46407492ccbe77,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/41861-01003
270,271,Resistors,Vishay,47012-03830,MRS25000C3830F,MRS25000C3830FRP00,https://app.lcm-client.com/belimo/matching/47012-03830/ef351458b324e0850a46407492d6f482,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-03830
271,272,Resistors,Vishay,47012-04531,MRS25000C4531F,MRS25000C4531FRP00,https://app.lcm-client.com/belimo/matching/47012-04531/ef351458b324e0850a46407492d71357,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-04531
272,273,Resistors,Vishay,47012-06192,MBB02070C6192F,MBB02070C6192FRP00,https://app.lcm-client.com/belimo/matching/47012-06192/ef351458b324e0850a46407492d72930,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47012-06192
273,274,Resistors,Vishay,47012-06192,MRS25000C6192F,MRS25000C6192FRP00,https://app.lcm-client.com/belimo/matching/47012-06192/ef351458b324e0850a46407492d735ec,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-06192
274,275,Resistors,Vishay,47013,MBB02070C5600F,MBB02070C5600FRP00,https://app.lcm-client.com/belimo/matching/47013/ef351458b324e0850a46407492d77c2d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47013
275,276,Resistors,Vishay,47016,MBB02070C2102F,MBB02070C2102FRP00,https://app.lcm-client.com/belimo/matching/47016/ef351458b324e0850a46407492d79a35,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47016
276,277,Resistors,Vishay,47017,MBB02070C2802F,MBB02070C2802FRP00,https://app.lcm-client.com/belimo/matching/47017/ef351458b324e0850a46407492d7bc7e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47017
277,278,Resistors,Vishay,47030,MBB02070C1004F,MBB02070C1004FRP00,https://app.lcm-client.com/belimo/matching/47030/ef351458b324e0850a46407492d7ea45,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47030
278,279,Resistors,Vishay,47035,MBB02070C1802F,MBB02070C1802FRP00,https://app.lcm-client.com/belimo/matching/47035/ef351458b324e0850a46407492d82ea5,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47035
279,280,Resistors,Vishay,47355-01208,MRS25000C1208F,MRS25000C1208FRP00,https://app.lcm-client.com/belimo/matching/47355-01208/a57dd45b8b8bfbbc6b72118464fc8178,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01208
280,281,Resistors,Vishay,47355-01209,MBB02070C1209F,MBB02070C1209FRP00,https://app.lcm-client.com/belimo/matching/47355-01209/a57dd45b8b8bfbbc6b72118464fca02d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01209
281,282,Resistors,Vishay,47355-01209,MRS25000C1209F,MRS25000C1209FRP00,https://app.lcm-client.com/belimo/matching/47355-01209/a57dd45b8b8bfbbc6b72118464fcacd1,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01209
282,283,Resistors,Vishay,40617-01001,MMA02040C1001F,MMA02040C1001FB000,https://app.lcm-client.com/belimo/matching/40617-01001/c8cb570d5127ae96aaae8eee66425d73,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01001
283,284,Resistors,Vishay,40617-01001,SMM02040C1001F,SMM02040C1001FB000,https://app.lcm-client.com/belimo/matching/40617-01001/c8cb570d5127ae96aaae8eee664273bd,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01001
284,285,Resistors,Vishay,40617-04701,MMA02040C4701F,MMA02040C4701FB000,https://app.lcm-client.com/belimo/matching/40617-04701/c8cb570d5127ae96aaae8eee66480626,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04701
285,286,Resistors,Vishay,40617-04701,SMM02040C4701F,SMM02040C4701FB000,https://app.lcm-client.com/belimo/matching/40617-04701/c8cb570d5127ae96aaae8eee66480c80,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04701
286,287,Resistors,Vishay,40617-04708,MMA02040C4708F,MMA02040C4708FB000,https://app.lcm-client.com/belimo/matching/40617-04708/c8cb570d5127ae96aaae8eee66486f7f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04708
287,288,Resistors,Vishay,40617-04708,SMM02040C4708F,SMM02040C4708FB000,https://app.lcm-client.com/belimo/matching/40617-04708/c8cb570d5127ae96aaae8eee6648785d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04708
288,289,Resistors,Vishay,40617-04992,MMA02040C4992F,MMA02040C4992FB000,https://app.lcm-client.com/belimo/matching/40617-04992/c8cb570d5127ae96aaae8eee6648d911,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04992
289,290,Resistors,Vishay,40602-04701,MMB02070C4701F,MMB02070C4701FB700,https://app.lcm-client.com/belimo/matching/40602-04701/ef351458b324e0850a46407492a55a67,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04701
290,291,Resistors,Vishay,40602-09100,SMM02070C9100F,SMM02070C9100FBS00,https://app.lcm-client.com/belimo/matching/40602-09100/ef351458b324e0850a46407492a7a870,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-09100
291,292,Resistors,Vishay,40617-01002,MMA02040C1002F,MMA02040C1002FB000,https://app.lcm-client.com/belimo/matching/40617-01002/ef351458b324e0850a46407492b97ffb,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01002
292,293,Resistors,Vishay,40617-01002,SMM02040C1002F,SMM02040C1002FB000,https://app.lcm-client.com/belimo/matching/40617-01002/ef351458b324e0850a46407492b98f3c,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01002
293,294,Resistors,Vishay,40617-01003,MMA02040C1003F,MMA02040C1003FB000,https://app.lcm-client.com/belimo/matching/40617-01003/ef351458b324e0850a46407492b9d7bd,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01003
294,295,Resistors,Vishay,40617-01003,SMM02040C1003F,SMM02040C1003FB000,https://app.lcm-client.com/belimo/matching/40617-01003/ef351458b324e0850a46407492b9e217,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01003
295,296,Resistors,Vishay,40617-01008,MMA02040C1008F,MMA02040C1008FB000,https://app.lcm-client.com/belimo/matching/40617-01008/ef351458b324e0850a46407492ba4463,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01008
296,297,Resistors,Vishay,40617-01008,SMM02040C1008F,SMM02040C1008FB000,https://app.lcm-client.com/belimo/matching/40617-01008/ef351458b324e0850a46407492ba493f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01008
297,298,Resistors,Vishay,40617-01009,MMA02040C1009F,MMA02040C1009FB000,https://app.lcm-client.com/belimo/matching/40617-01009/ef351458b324e0850a46407492baaa84,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01009
298,299,Resistors,Vishay,40617-01009,SMM02040C1009F,SMM02040C1009FB000,https://app.lcm-client.com/belimo/matching/40617-01009/ef351458b324e0850a46407492bab791,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01009
299,300,Resistors,Vishay,40926,MBB02070C8202F,MBB02070C8202FRP00,https://app.lcm-client.com/belimo/matching/40926/ef351458b324e0850a46407492c97f9f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40926
300,301,Resistors,Vishay,41749-06800,CMB02070X6800G,CMB02070X6800GB700,https://app.lcm-client.com/belimo/matching/41749-06800/ef351458b324e0850a46407492cb3c37,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/41749-06800
301,302,Resistors,Vishay,41770-02401,CRCW12182K40FK,CRCW12182K40FKEK,https://app.lcm-client.com/belimo/matching/41770-02401/ef351458b324e0850a46407492cb4b4c,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41770-02401
302,303,Resistors,Vishay,41770-02401,RCL12182K40FK,RCL12182K40FKEK,https://app.lcm-client.com/belimo/matching/41770-02401/ef351458b324e0850a46407492cb5a01,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41770-02401
303,304,Resistors,Vishay,41770-02709,CRCW121827R0FK,CRCW121827R0FKEK,https://app.lcm-client.com/belimo/matching/41770-02709/ef351458b324e0850a46407492cb724c,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41770-02709
304,305,Resistors,Vishay,41770-02709,RCL121827R0FK,RCL121827R0FKEK,https://app.lcm-client.com/belimo/matching/41770-02709/ef351458b324e0850a46407492cb7c46,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41770-02709
305,306,Resistors,Vishay,41770-09100,CRCW1218910RFK,CRCW1218910RFKEK,https://app.lcm-client.com/belimo/matching/41770-09100/ef351458b324e0850a46407492cb859c,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41770-09100
306,307,Resistors,Vishay,41770-09100,RCL1218910RFK,RCL1218910RFKEK,https://app.lcm-client.com/belimo/matching/41770-09100/ef351458b324e0850a46407492cb8df7,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41770-09100
307,308,Resistors,Vishay,41807-08208,CRCW25128R20JN,CRCW25128R20JNEG,https://app.lcm-client.com/belimo/matching/41807-08208/ef351458b324e0850a46407492cc6d55,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41807-08208
308,309,Resistors,Vishay,41857-04700,CMA02040X4700G,CMA02040X4700GB300,https://app.lcm-client.com/belimo/matching/41857-04700/ef351458b324e0850a46407492cc8de1,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/41857-04700
309,310,Resistors,Vishay,40550,MBB0207IC1203F,MBB0207IC1203FRP00,https://app.lcm-client.com/belimo/matching/40550/ef351458b324e0850a464074929fa8a6,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40550
310,311,Resistors,Vishay,40550,MRS25000C1203F,MRS25000C1203FRP00,https://app.lcm-client.com/belimo/matching/40550/ef351458b324e0850a464074929faa94,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40550
311,312,Resistors,Vishay,40602-01001,MMB02070C1001F,MMB02070C1001FB700,https://app.lcm-client.com/belimo/matching/40602-01001/ef351458b324e0850a464074929fd84b,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01001
312,313,Resistors,Vishay,40602-01001,SMM02070C1001F,SMM02070C1001FBS00,https://app.lcm-client.com/belimo/matching/40602-01001/ef351458b324e0850a464074929fe654,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01001
313,314,Resistors,Vishay,40602-01002,MMB02070C1002F,MMB02070C1002FB700,https://app.lcm-client.com/belimo/matching/40602-01002/ef351458b324e0850a46407492a00ad0,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01002
314,315,Resistors,Vishay,40602-01002,SMM02070C1002F,SMM02070C1002FBS00,https://app.lcm-client.com/belimo/matching/40602-01002/ef351458b324e0850a46407492a00ede,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01002
315,316,Resistors,Vishay,40602-01004,MMB02070C1004F,MMB02070C1004FB700,https://app.lcm-client.com/belimo/matching/40602-01004/ef351458b324e0850a46407492a03473,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01004
316,317,Resistors,Vishay,40602-01004,SMM02070C1004F,SMM02070C1004FBS00,https://app.lcm-client.com/belimo/matching/40602-01004/ef351458b324e0850a46407492a03d9c,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01004
317,318,Resistors,Vishay,40861,MBB02070C2202F,MBB02070C2202FRP00,https://app.lcm-client.com/belimo/matching/40861/ef351458b324e0850a46407492c733f0,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40861
318,319,Resistors,Vishay,40861,MRS25000C2202F,MRS25000C2202FRP00,https://app.lcm-client.com/belimo/matching/40861/ef351458b324e0850a46407492c73735,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40861
319,320,Resistors,Vishay,47038,MBB02070C1103F,MBB02070C1103FRP00,https://app.lcm-client.com/belimo/matching/47038/ef351458b324e0850a46407492d84967,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47038
320,321,Resistors,Vishay,47355-05762,MRS25000C5762F,MRS25000C5762FRP00,https://app.lcm-client.com/belimo/matching/47355-05762/ef351458b324e0850a46407492dceb65,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-05762
321,322,Resistors,Vishay,47355-07503,MBB02070C7503F,MBB02070C7503FRP00,https://app.lcm-client.com/belimo/matching/47355-07503/ef351458b324e0850a46407492dd0a2c,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-07503
322,323,Resistors,Vishay,47355-07503,MRS25000C7503F,MRS25000C7503FRP00,https://app.lcm-client.com/belimo/matching/47355-07503/ef351458b324e0850a46407492dd1062,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-07503
323,324,Resistors,Vishay,47355-09102,MBB02070C9102F,MBB02070C9102FRP00,https://app.lcm-client.com/belimo/matching/47355-09102/ef351458b324e0850a46407492dd3bb8,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-09102
324,325,Resistors,Vishay,47355-09102,MRS25000C9102F,MRS25000C9102FRP00,https://app.lcm-client.com/belimo/matching/47355-09102/ef351458b324e0850a46407492dd4037,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-09102
325,326,Resistors,Vishay,47355-42200,MBB02070C2200F,MBB02070C2200FRP00,https://app.lcm-client.com/belimo/matching/47355-42200/ef351458b324e0850a46407492dd65ba,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-42200
326,327,Resistors,Vishay,47355-42200,MRS25000C2200F,MRS25000C2200FRP00,https://app.lcm-client.com/belimo/matching/47355-42200/ef351458b324e0850a46407492dd696b,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-42200
327,328,Resistors,Vishay,40617-02408,SMM02040C2408F,SMM02040C2408FB000,https://app.lcm-client.com/belimo/matching/40617-02408/ef351458b324e0850a46407492c0d2b0,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02408
328,329,Resistors,Vishay,40852,MBB02070C4702F,MBB02070C4702FRP00,https://app.lcm-client.com/belimo/matching/40852/ef351458b324e0850a46407492c6d60f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40852
329,330,Resistors,Vishay,40852,MRS25000C4702F,MRS25000C4702FRP00,https://app.lcm-client.com/belimo/matching/40852/ef351458b324e0850a46407492c6e1c7,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40852
330,331,Resistors,Vishay,40853,MBB02070C5902F,MBB02070C5902FRP00,https://app.lcm-client.com/belimo/matching/40853/ef351458b324e0850a46407492c703d9,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40853
331,332,Resistors,Vishay,40853,MRS25000C5902F,MRS25000C5902FRP00,https://app.lcm-client.com/belimo/matching/40853/ef351458b324e0850a46407492c70733,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40853
332,333,Resistors,Vishay,40860,MBB02070C3001F,MBB02070C3001FRP00,https://app.lcm-client.com/belimo/matching/40860/ef351458b324e0850a46407492c71d0c,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40860
333,334,Resistors,Vishay,40860,MRS25000C3001F,MRS25000C3001FRP00,https://app.lcm-client.com/belimo/matching/40860/ef351458b324e0850a46407492c72721,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40860
334,335,Resistors,Vishay,47355-44700,MRS25000C4700F,MRS25000C4700FRP00,https://app.lcm-client.com/belimo/matching/47355-44700/ef351458b324e0850a46407492dd925e,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-44700
335,336,Resistors,TT Electronics,40617-01204,WRM0204C1M2FI,WRM0204C-1M2FI,https://app.lcm-client.com/belimo/matching/40617-01204/a57dd45b8b8bfbbc6b72118464e1e61b,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01204
336,337,Resistors,TT Electronics,40617-01211,WRM0204C1K21FI,WRM0204C-470RFI,https://app.lcm-client.com/belimo/matching/40617-01211/a57dd45b8b8bfbbc6b72118464e2c13b,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01211
337,338,Resistors,TT Electronics,40617-01800,WRM0204C180RFI,WRM0204C180RFI,https://app.lcm-client.com/belimo/matching/40617-01800/a57dd45b8b8bfbbc6b72118464e475a3,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01800
338,339,Resistors,TT Electronics,40617-01801,WRM0204C1K8FI,WRM0204C-1K8FI,https://app.lcm-client.com/belimo/matching/40617-01801/a57dd45b8b8bfbbc6b72118464e4ef28,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01801
339,340,Resistors,TT Electronics,40617-03303,WRM0204C330KFI,WRM0204C-330KFI,https://app.lcm-client.com/belimo/matching/40617-03303/a57dd45b8b8bfbbc6b72118464e87aed,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03303
340,341,Resistors,TT Electronics,40617-04700,WRM0204C470RFI,WRM0204C-470RFI,https://app.lcm-client.com/belimo/matching/40617-04700/a57dd45b8b8bfbbc6b72118464ea09cb,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04700
341,342,Resistors,TT Electronics,40615-02002,PCF1206-R-20KB,PCF1206R-20KBT1 ,https://app.lcm-client.com/belimo/matching/40615-02002/c8cb570d5127ae96aaae8eee663f84a2,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02002
342,343,Resistors,TT Electronics,40615-02202,PCF1206-R-22KB,PCF1206R-22KBT1,https://app.lcm-client.com/belimo/matching/40615-02202/c8cb570d5127ae96aaae8eee663fadb4,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02202
343,344,Resistors,TT Electronics,40615-02372,PCF1206-R-56KB,PCF1206R-56KBT1,https://app.lcm-client.com/belimo/matching/40615-02202/c8cb570d5127ae96aaae8eee663fadb4,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02372
344,345,Resistors,TT Electronics,40615-02402,PCF1206-R-24KB,PCF1206R-24KBT1,https://app.lcm-client.com/belimo/matching/40615-02402/c8cb570d5127ae96aaae8eee664021c3,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02402
345,346,Resistors,TT Electronics,40615-02492,PCF1206-R-24K9B,PCF1206R-24K9BT1,https://app.lcm-client.com/belimo/matching/40615-02492/c8cb570d5127ae96aaae8eee66405af8,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02492
346,347,Resistors,TT Electronics,40615-02552,PCF1206-R-25K5B,PCF1206R-25K5BT1,https://app.lcm-client.com/belimo/matching/40615-02552/c8cb570d5127ae96aaae8eee664087ff,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02552
347,348,Resistors,TT Electronics,40615-02702,PCF1206-R-27KB,PCF1206R-27KBT1,https://app.lcm-client.com/belimo/matching/40615-02702/c8cb570d5127ae96aaae8eee6640c2eb,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02702
348,349,Resistors,TT Electronics,40615-03922,PCF1206-R-39K2B,PCF1206R-39K2BT1,https://app.lcm-client.com/belimo/matching/40615-03922/c8cb570d5127ae96aaae8eee6640ff82,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-03922
349,350,Resistors,TT Electronics,40615-06812,PCF1206-R-68K1B,PCF1206R-68K1BT1,https://app.lcm-client.com/belimo/matching/40615-06812/c8cb570d5127ae96aaae8eee6641618e,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-06812
350,351,Resistors,TT Electronics,40615-06982,PCF1206-R-69K8B,PCF1206R-69K8BT1,https://app.lcm-client.com/belimo/matching/40615-06982/c8cb570d5127ae96aaae8eee66419452,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-06982
351,352,Resistors,TT Electronics,40615-08201,PCF1206-R-8K2B,PCF1206R-8K2BT1,https://app.lcm-client.com/belimo/matching/40615-08201/c8cb570d5127ae96aaae8eee6641c3da,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-08201
352,353,Resistors,TT Electronics,40617-01001,WRM0204C1KFI,WRM0204C-1K0FI,https://app.lcm-client.com/belimo/matching/40617-01001/c8cb570d5127ae96aaae8eee66425552,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01001
353,354,Resistors,TT Electronics,40617-04701,WRM0204C4K7FI,WRM0204C-4K7FI,https://app.lcm-client.com/belimo/matching/40617-04701/c8cb570d5127ae96aaae8eee6647ff02,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04701
354,355,Resistors,TT Electronics,40617-04992,WRM0204C49K9FI,WRM0204C-49K9FI,https://app.lcm-client.com/belimo/matching/40617-04992/c8cb570d5127ae96aaae8eee6648bd7f,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04992
355,356,Resistors,TT Electronics,40617-05109,WRM0204C51RFI,WRM0204C-51RFI,https://app.lcm-client.com/belimo/matching/40617-05109/c8cb570d5127ae96aaae8eee664944ae,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-05109
356,357,Resistors,TT Electronics,40617-05601,WRM0204C5K6FI,WRM0204C-5K6FI,https://app.lcm-client.com/belimo/matching/40617-05601/c8cb570d5127ae96aaae8eee6649b46b,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-05601
357,358,Resistors,TT Electronics,40617-06800,WRM0204C680RFI,WRM0204C-680RFI,https://app.lcm-client.com/belimo/matching/40617-06800/c8cb570d5127ae96aaae8eee664a97c6,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06800
358,359,Resistors,TT Electronics,40617-06801,WRM0204C6K8FI,WRM0204C-6K8FI,https://app.lcm-client.com/belimo/matching/40617-06801/c8cb570d5127ae96aaae8eee664b8a2f,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06801
359,360,Resistors,TT Electronics,40617-07502,WRM0204C75KFI,WRM0204C-75KFI,https://app.lcm-client.com/belimo/matching/40617-07502/c8cb570d5127ae96aaae8eee664c65a4,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-07502
360,361,Resistors,TT Electronics,40602-01001,WRM0207HPC-1K0F,WRM0207HPC-1K0FT2,https://app.lcm-client.com/belimo/matching/40602-01001/ef351458b324e0850a464074929fc757,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01001
361,362,Resistors,TT Electronics,40602-01002,WRM0207HPC-10KF,WRM0207HPC-10KFT2,https://app.lcm-client.com/belimo/matching/40602-01002/ef351458b324e0850a46407492a0014a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01002
362,363,Resistors,TT Electronics,40602-01004,WRM0207HPC-1M0F,WRM0207HPC-1M0FT2,https://app.lcm-client.com/belimo/matching/40602-01004/ef351458b324e0850a46407492a0258e,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01004
363,364,Resistors,TT Electronics,40602-01100,WRM0207HPC-110RF,WRM0207HPC-110RFT2,https://app.lcm-client.com/belimo/matching/40602-01100/ef351458b324e0850a46407492a0d9d9,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01100
364,365,Resistors,TT Electronics,40602-01501,WRM0207HPC-1K5F,WRM0207HPC-1K5FT2,https://app.lcm-client.com/belimo/matching/40602-01501/ef351458b324e0850a46407492a118c9,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01501
365,366,Resistors,TT Electronics,40602-01503,WRM0207HPC-150KF,WRM0207HPC-150KFT2,https://app.lcm-client.com/belimo/matching/40602-01503/ef351458b324e0850a46407492a15498,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01503
366,367,Resistors,TT Electronics,40602-01801,WRM0207HPC-1K8F,WRM0207HPC-1K8FT2,https://app.lcm-client.com/belimo/matching/40602-01801/ef351458b324e0850a46407492a19513,ok,Automotive,Yes,y,Requires Update,https://app.lcm-client.com/belimo/part/40602-01801
367,368,Resistors,TT Electronics,40602-02201,WRM0207HPC-2K2F,WRM0207HPC-2K2FT2,https://app.lcm-client.com/belimo/matching/40602-02201/ef351458b324e0850a46407492a1c7a2,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02201
368,369,Resistors,TT Electronics,40602-02203,WRM0207HPC-220KF,WRM0207HPC-220KFT2,https://app.lcm-client.com/belimo/matching/40602-02203/ef351458b324e0850a46407492a208f7,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02203
369,370,Resistors,TT Electronics,40602-02401,WRM0207HPC-2K4F,WRM0207HPC-2K4FT2,https://app.lcm-client.com/belimo/matching/40602-02401/ef351458b324e0850a46407492a27710,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02401
370,371,Resistors,TT Electronics,40602-02402,WRM0207HPC-24KF,WRM0207HPC-24KFT2,https://app.lcm-client.com/belimo/matching/40602-02402/ef351458b324e0850a46407492a2b96e,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02402
371,372,Resistors,TT Electronics,40602-02403,WRM0207HPC-240KF,WRM0207HPC-240KFT2,https://app.lcm-client.com/belimo/matching/40602-02403/ef351458b324e0850a46407492a2ea6d,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02403
372,373,Resistors,TT Electronics,40602-02491,WRM0207HPC-2K49F,WRM0207HPC-2K49FT2,https://app.lcm-client.com/belimo/matching/40602-02491/ef351458b324e0850a46407492a30f58,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02491
373,374,Resistors,TT Electronics,40602-02703,WRM0207HPC-270KF,WRM0207HPC-270KFT2,https://app.lcm-client.com/belimo/matching/40602-02703/ef351458b324e0850a46407492a35ee4,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02703
374,375,Resistors,TT Electronics,40602-03000,WRM0207HPC-300RF,WRM0207HPC-300RFT2,https://app.lcm-client.com/belimo/matching/40602-03000/ef351458b324e0850a46407492a39ce1,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-03000
375,376,Resistors,TT Electronics,40602-03303,WRM0207HPC-330KF,WRM0207HPC-330KFT2,https://app.lcm-client.com/belimo/matching/40602-03303/ef351458b324e0850a46407492a3cdcf,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-03303
376,377,Resistors,TT Electronics,40602-04700,WRM0207HPC-470RF,WRM0207HPC-470RFT2,https://app.lcm-client.com/belimo/matching/40602-04700/ef351458b324e0850a46407492a51cfd,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04700
377,378,Resistors,TT Electronics,40602-04701,WRM0207HPC-4K7F,WRM0207HPC-4K7FT2,https://app.lcm-client.com/belimo/matching/40602-04701/ef351458b324e0850a46407492a54e73,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04701
378,379,Resistors,TT Electronics,40602-04702,WRM0207HPC-47KF,WRM0207HPC-47KFT2,https://app.lcm-client.com/belimo/matching/40602-04702/ef351458b324e0850a46407492a58a5c,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04702
379,380,Resistors,TT Electronics,40602-04703,WRM0207HPC-470KF,WRM0207HPC-470KFT2,https://app.lcm-client.com/belimo/matching/40602-04703/ef351458b324e0850a46407492a5b923,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04703
380,381,Resistors,TT Electronics,40602-05100,WRM0207HPC-510RF,WRM0207HPC-510RFT2,https://app.lcm-client.com/belimo/matching/40602-05100/ef351458b324e0850a46407492a6084d,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05100
381,382,Resistors,TT Electronics,40602-05603,WRM0207HPC-560KF,WRM0207HPC-560KFT2,https://app.lcm-client.com/belimo/matching/40602-05603/ef351458b324e0850a46407492a64c72,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05603
382,383,Resistors,TT Electronics,40602-06209,WRM0207HPC-62RF,WRM0207HPC-62RFT2,https://app.lcm-client.com/belimo/matching/40602-06209/ef351458b324e0850a46407492a68b65,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-06209
383,384,Resistors,TT Electronics,40602-07502,WRM0207HPC-75KF,WRM0207HPC-75KFT2,https://app.lcm-client.com/belimo/matching/40602-07502/ef351458b324e0850a46407492a6d6ab,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-07502
384,385,Resistors,TT Electronics,40602-08063,WRM0207HPC-806KF,WRM0207HPC-806KFT2,https://app.lcm-client.com/belimo/matching/40602-08063/ef351458b324e0850a46407492a71c92,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08063
385,386,Resistors,TT Electronics,40602-08202,WRM0207HPC-82KF,WRM0207HPC-82KFT2,https://app.lcm-client.com/belimo/matching/40602-08202/ef351458b324e0850a46407492a75ccf,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08202
386,387,Resistors,TT Electronics,40602-09100,WRM0207HPC-910RF,WRM0207HPC-910RFT2,https://app.lcm-client.com/belimo/matching/40602-09100/ef351458b324e0850a46407492a79fec,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-09100
387,388,Resistors,TT Electronics,40615-01002,PCF1206-R-10KB,PCF1206R-10KBT1,https://app.lcm-client.com/belimo/matching/40615-01002/ef351458b324e0850a46407492b6a626,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-01002
388,389,Resistors,TT Electronics,40615-01022,PCF1206-R-10K2B,PCF1206R-10K2BT1,https://app.lcm-client.com/belimo/matching/40615-01022/ef351458b324e0850a46407492b6e25d,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-01022
389,390,Resistors,TT Electronics,40615-01213,PCF1206-R-121KB,PCF1206R-121KBT1,https://app.lcm-client.com/belimo/matching/40615-01213/ef351458b324e0850a46407492b72657,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-01213
390,391,Resistors,TT Electronics,40615-01822,PCF1206-R-18K2B,PCF1206R-18K2BT1,https://app.lcm-client.com/belimo/matching/40615-01822/ef351458b324e0850a46407492b751d0,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-01822
391,392,Resistors,TT Electronics,40617-01002,WRM0204C10KFI,WRM0204C-10KFI,https://app.lcm-client.com/belimo/matching/40617-01002/ef351458b324e0850a46407492b965cd,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01002
392,393,Resistors,TT Electronics,40617-01003,WRM0204C100KFI,WRM0204C-100KFI,https://app.lcm-client.com/belimo/matching/40617-01003/ef351458b324e0850a46407492b9d08e,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01003
393,394,Resistors,TT Electronics,40617-01108,WRM0204C1R1FI,WRM0204C-1R1FI,https://app.lcm-client.com/belimo/matching/40617-01108/ef351458b324e0850a46407492bb284b,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01108
394,395,Resistors,TT Electronics,40617-01201,WRM0204C1K2FI,WRM0204C-1K2FI,https://app.lcm-client.com/belimo/matching/40617-01201/ef351458b324e0850a46407492bb9190,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01201
395,396,Resistors,TT Electronics,40617-01202,WRM0204C12KFI,WRM0204C-12KFI,https://app.lcm-client.com/belimo/matching/40617-01202/ef351458b324e0850a46407492bbe280,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01202
396,397,Resistors,TT Electronics,40617-02002,WRM0204C20KFI,WRM0204C-20KFI,https://app.lcm-client.com/belimo/matching/40617-02002/ef351458b324e0850a46407492beb216,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02002
397,398,Resistors,TT Electronics,40617-02201,WRM0204C2K2FI,WRM0204C-2K2FI,https://app.lcm-client.com/belimo/matching/40617-02201/ef351458b324e0850a46407492bf96d3,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02201
398,399,Resistors,TT Electronics,40617-02202,WRM0204C22KFI,WRM0204C-22KFI,https://app.lcm-client.com/belimo/matching/40617-02202/ef351458b324e0850a46407492c0070f,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02202
399,400,Resistors,TT Electronics,40617-02402,WRM0204C24KFI,WRM0204C-24KFI,https://app.lcm-client.com/belimo/matching/40617-02402/ef351458b324e0850a46407492c077bb,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02402
400,401,Resistors,TT Electronics,41746-02007,LR2512-R20F,LR2512-R20FT1,https://app.lcm-client.com/belimo/matching/41746-02007/ef351458b324e0850a46407492cb1266,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41746-02007
401,402,Resistors,TT Electronics,41801-00057,LRMAP2512-R005F,LRMAP2512-R005FT4,https://app.lcm-client.com/belimo/matching/41801-00057/ef351458b324e0850a46407492cc617c,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/41801-00057
402,403,Resistors,TT Electronics,41808-01008,CHP1/8501R00J,CHP1/8501R00JLF,https://app.lcm-client.com/belimo/matching/41808-01008/ef351458b324e0850a46407492cc74b7,ok,STD,Yes,y,Obsolete,https://app.lcm-client.com/belimo/part/41808-01008
403,404,Resistors,Panasonic,41911-03001,ERJ2RKF3001,ERJ2RKF3001X,https://app.lcm-client.com/belimo/matching/41911-03001/01c0aaf7f54e36ff3a021a81ca303251,ok,Automotive,Exption,n,,
404,405,Resistors,Panasonic,41911-03301,ERJ2RKF3301,ERJ2RKF3301X,https://app.lcm-client.com/belimo/matching/41911-03301/01c0aaf7f54e36ff3a021a81ca30648f,ok,Automotive,Exption,n,,
405,406,Resistors,Panasonic,41911-05600,ERJ2RKF5600,ERJ2RKF5600X,https://app.lcm-client.com/belimo/matching/41911-05600/215374c1de05d3324b68f967dc5023c8,ok,Automotive,Exption,n,,
406,407,Resistors,Panasonic,41911-07502,ERJ2RKF7502,ERJ2RKF7502X,https://app.lcm-client.com/belimo/matching/41911-07502/215374c1de05d3324b68f967dc50b5a8,ok,Automotive,Exption,n,,
407,408,Resistors,Panasonic,41911-08203,ERJ2RKF8203,ERJ2RKF8203X,https://app.lcm-client.com/belimo/matching/41911-08203/215374c1de05d3324b68f967dc50e5fb,ok,Automotive,Exption,n,,
408,409,Resistors,Panasonic,41911-01103,ERJ2RKF1103,ERJ2RKF1103X,https://app.lcm-client.com/belimo/matching/41911-01103/46de94ed90f9f5ccd2b17e508cfa275c,ok,Automotive,Exption,n,,
409,410,Resistors,Panasonic,41911-01200,ERJ2RKF1200,ERJ2RKF1200X,https://app.lcm-client.com/belimo/matching/41911-01200/46de94ed90f9f5ccd2b17e508cfa4588,ok,Automotive,Exption,n,,
410,411,Resistors,Panasonic,41911-01302,ERJ2RKF1302,ERJ2RKF1302X,https://app.lcm-client.com/belimo/matching/41911-01302/46de94ed90f9f5ccd2b17e508cfa5fef,ok,Automotive,Exption,n,,
411,412,Resistors,Panasonic,41911-01303,ERJ2RKF1303,ERJ2RKF1303X,https://app.lcm-client.com/belimo/matching/41911-01303/46de94ed90f9f5ccd2b17e508cfa88df,ok,Automotive,Exption,n,,
412,413,Resistors,Panasonic,40613-01001,ERA6AEB102,ERA6AEB102V,https://app.lcm-client.com/belimo/matching/40613-01001/a57dd45b8b8bfbbc6b72118464d72071,ok,Automotive,Exption,n,,
413,414,Resistors,Panasonic,40613-01002,ERA6AEB103,ERA6AEB103V,https://app.lcm-client.com/belimo/matching/40613-01002/a57dd45b8b8bfbbc6b72118464d74c0c,ok,Automotive,Exption,n,,
414,415,Resistors,Panasonic,40613-01152,ERA6AEB1153,ERA6AEB1153V,https://app.lcm-client.com/belimo/matching/40613-01152/a57dd45b8b8bfbbc6b72118464d773c4,ok,Automotive,Exption,n,,
415,416,Resistors,Panasonic,40613-01271,ERA6AEB1271,ERA6AEB1271V,https://app.lcm-client.com/belimo/matching/40613-01271/a57dd45b8b8bfbbc6b72118464d7a262,ok,Automotive,Exption,n,,
416,417,Resistors,Panasonic,40613-01502,ERA6AEB1502,ERA6AEB1502V,https://app.lcm-client.com/belimo/matching/40613-01502/a57dd45b8b8bfbbc6b72118464d7ef05,ok,Automotive,Exption,n,,
417,418,Resistors,Panasonic,40613-01503,ERA6AEB1503,ERA6AEB1503V,https://app.lcm-client.com/belimo/matching/40613-01503/a57dd45b8b8bfbbc6b72118464d802b3,ok,Automotive,Exption,n,,
418,419,Resistors,Panasonic,40613-01602,ERA6AEB163,ERA6AEB163V,https://app.lcm-client.com/belimo/matching/40613-01602/a57dd45b8b8bfbbc6b72118464d8202c,ok,Automotive,Exption,n,,
419,420,Resistors,Panasonic,40613-02001,ERA6AEB2001,ERA6AEB2001V,https://app.lcm-client.com/belimo/matching/40613-02001/a57dd45b8b8bfbbc6b72118464d85572,ok,Automotive,Exption,n,,
420,421,Resistors,Panasonic,40613-02002,ERA6AEB2002,ERA6AEB2002V,https://app.lcm-client.com/belimo/matching/40613-02002/a57dd45b8b8bfbbc6b72118464d8777d,ok,Automotive,Exption,n,,
421,422,Resistors,Panasonic,40613-02432,ERA6AEB2431,ERA6AEB2431V,https://app.lcm-client.com/belimo/matching/40613-02432/a57dd45b8b8bfbbc6b72118464d8af94,ok,Automotive,Exption,n,,
422,423,Resistors,Panasonic,40613-03321,ERA6AEB3321,ERA6AEB3321V,https://app.lcm-client.com/belimo/matching/40613-03321/a57dd45b8b8bfbbc6b72118464d8e08b,ok,Automotive,Exption,n,,
423,424,Resistors,Panasonic,40613-03601,ERA6AEB362,ERA6AEB362V,https://app.lcm-client.com/belimo/matching/40613-03601/a57dd45b8b8bfbbc6b72118464d8fefd,ok,Automotive,Exption,n,,
424,425,Resistors,Panasonic,40613-04022,ERA6AEB4022,ERA6AEB4022V,https://app.lcm-client.com/belimo/matching/40613-04022/a57dd45b8b8bfbbc6b72118464da2fbb,ok,Automotive,Exption,n,,
425,426,Resistors,Panasonic,40613-06802,ERA6AEB683,ERA6AEB683V,https://app.lcm-client.com/belimo/matching/40613-06802/a57dd45b8b8bfbbc6b72118464da4c84,ok,Automotive,Exption,n,,
426,427,Resistors,Panasonic,40613-07871,ERA6AEB7871,ERA6AEB7871V,https://app.lcm-client.com/belimo/matching/40613-07871/a57dd45b8b8bfbbc6b72118464da5af6,ok,Automotive,Exption,n,,
427,428,Resistors,Panasonic,40613-09762,ERA6AEB9762,ERA6AEB9762V,https://app.lcm-client.com/belimo/matching/40613-09762/a57dd45b8b8bfbbc6b72118464da891e,ok,Automotive,Exption,n,,
428,429,Resistors,Panasonic,41911-01003,ERJ2RKF1003,ERJ2RKF1003X,https://app.lcm-client.com/belimo/matching/41911-01003/a57dd45b8b8bfbbc6b72118464f07eb4,ok,Automotive,Exption,n,,
429,430,Resistors,Panasonic,41911-01102,ERJ2RKF1102,ERJ2RKF1102X,https://app.lcm-client.com/belimo/matching/41911-01102/a57dd45b8b8bfbbc6b72118464f0d155,ok,Automotive,Exption,n,,
430,431,Resistors,Panasonic,41911-01202,ERJ2RKF1202,ERJ2RKF1202X,https://app.lcm-client.com/belimo/matching/41911-01202/a57dd45b8b8bfbbc6b72118464f1003f,ok,Automotive,Exption,n,,
431,432,Resistors,Panasonic,41911-01203,ERJ2RKF1203,ERJ2RKF1203X,https://app.lcm-client.com/belimo/matching/41911-01203/a57dd45b8b8bfbbc6b72118464f11b46,ok,Automotive,Exption,n,,
432,433,Resistors,Panasonic,41911-01402,ERJ2RKF1402,ERJ2RKF1402X,https://app.lcm-client.com/belimo/matching/41911-01402/a57dd45b8b8bfbbc6b72118464f1429e,ok,Automotive,Exption,n,,
433,434,Resistors,Panasonic,41911-01502,ERJ2RKF1502,ERJ2RKF1502X,https://app.lcm-client.com/belimo/matching/41911-01502/a57dd45b8b8bfbbc6b72118464f179f5,ok,Automotive,Exption,n,,
434,435,Resistors,Panasonic,41911-01503,ERJ2RKF1503,ERJ2RKF1503X,https://app.lcm-client.com/belimo/matching/41911-01503/a57dd45b8b8bfbbc6b72118464f1b159,ok,Automotive,Exption,n,,
435,436,Resistors,Panasonic,41911-01802,ERJ2RKF1802,ERJ2RKF1802X,https://app.lcm-client.com/belimo/matching/41911-01802/a57dd45b8b8bfbbc6b72118464f1e1f1,ok,Automotive,Exption,n,,
436,437,Resistors,Panasonic,41911-01803,ERJ2RKF1803,ERJ2RKF1803X,https://app.lcm-client.com/belimo/matching/41911-01803/a57dd45b8b8bfbbc6b72118464f210cd,ok,Automotive,Exption,n,,
437,438,Resistors,Panasonic,41911-02003,ERJ2RKF2003,ERJ2RKF2003X,https://app.lcm-client.com/belimo/matching/41911-02003/a57dd45b8b8bfbbc6b72118464f2425a,ok,Automotive,Exption,n,,
438,439,Resistors,Panasonic,41911-02200,ERJ2RKF2200,ERJ2RKF2200X,https://app.lcm-client.com/belimo/matching/41911-02200/a57dd45b8b8bfbbc6b72118464f2631d,ok,Automotive,Exption,n,,
439,440,Resistors,Panasonic,41911-02201,ERJ2RKF2201,ERJ2RKF2201X,https://app.lcm-client.com/belimo/matching/41911-02201/a57dd45b8b8bfbbc6b72118464f28fbc,ok,Automotive,Exption,n,,
440,441,Resistors,Panasonic,41911-02202,ERJ2RKF2202,ERJ2RKF2202X,https://app.lcm-client.com/belimo/matching/41911-02202/a57dd45b8b8bfbbc6b72118464f2ad6b,ok,Automotive,Exption,n,,
441,442,Resistors,Panasonic,41911-02203,ERJ2RKF2203,ERJ2RKF2203X,https://app.lcm-client.com/belimo/matching/41911-02203/a57dd45b8b8bfbbc6b72118464f2d9da,ok,Automotive,Exption,n,,
442,443,Resistors,Panasonic,47690-00001,ERJ-6ENF1003V,ERJ6ENF1003V,https://app.lcm-client.com/belimo/matching/47690-00001/a57dd45b8b8bfbbc6b72118464fe67b5,ok,Automotive,Exption,n,,
443,444,Resistors,Panasonic,47692-00001,ERJ-6ENF1783V,ERJ6ENF1783V,https://app.lcm-client.com/belimo/matching/47692-00001/a57dd45b8b8bfbbc6b72118464fe776d,ok,Automotive,Exption,n,,
444,445,Resistors,Panasonic,47694-00001,ERJ-6ENF4753V,ERJ6ENF4753V,https://app.lcm-client.com/belimo/matching/47694-00001/a57dd45b8b8bfbbc6b72118464fe8343,ok,Automotive,Exption,n,,
445,446,Resistors,Panasonic,47695-00001,ERJ-6ENF6493V,ERJ6ENF6493V,https://app.lcm-client.com/belimo/matching/47695-00001/a57dd45b8b8bfbbc6b72118464fe92ca,ok,Automotive,Exption,n,,
446,447,Resistors,Panasonic,47700-00001,ERJ-6ENF1000V,ERJ6ENF1000V,https://app.lcm-client.com/belimo/matching/47700-00001/a57dd45b8b8bfbbc6b72118464fee6c1,ok,Automotive,Exption,n,,
447,448,Resistors,Panasonic,47703-00001,ERJ-6ENF9090V,ERJ6ENF9090V,https://app.lcm-client.com/belimo/matching/47703-00001/a57dd45b8b8bfbbc6b72118464ff302b,ok,Automotive,Exption,n,,
448,449,Resistors,Panasonic,47704-00001,ERJ-8ENF1001V,ERJ8ENF1001V,https://app.lcm-client.com/belimo/matching/47704-00001/a57dd45b8b8bfbbc6b72118464ff3d4c,ok,Automotive,Exption,y,NRND,
449,450,Resistors,Panasonic,47716-00001,ERJ-8ENF62R0V,ERJ8ENF62R0V,https://app.lcm-client.com/belimo/matching/47716-00001/a57dd45b8b8bfbbc6b72118464ffbddb,ok,Automotive,Exption,y,NRND,
450,451,Resistors,Panasonic,47720-00001,ERJ-8ENF4990V,ERJ8ENF4990V,https://app.lcm-client.com/belimo/matching/47720-00001/a57dd45b8b8bfbbc6b72118464ffd9f2,ok,Automotive,Exption,y,NRND,
451,452,Resistors,Panasonic,41911-02400,ERJ2RKF2400,ERJ2RKF2400x,https://app.lcm-client.com/belimo/matching/41911-02400/c8cb570d5127ae96aaae8eee6653b5ee,ok,Automotive,Exption,n,,
452,453,Resistors,Panasonic,41911-02402,ERJ2RKF2402,ERJ2RKF2402X,https://app.lcm-client.com/belimo/matching/41911-02402/c8cb570d5127ae96aaae8eee6653e56f,ok,Automotive,Exption,n,,
453,454,Resistors,Panasonic,41911-02701,ERJ2RKF2701,ERJ2RKF2701X,https://app.lcm-client.com/belimo/matching/41911-02701/c8cb570d5127ae96aaae8eee66541a81,ok,Automotive,Exption,n,,
454,455,Resistors,Panasonic,41911-02702,ERJ2RKF2702,ERJ2RKF2702X,https://app.lcm-client.com/belimo/matching/41911-02702/c8cb570d5127ae96aaae8eee66543ebe,ok,Automotive,Exption,n,,
455,456,Resistors,Panasonic,41911-03002,ERJ2RKF3002,ERJ2RKF3002X,https://app.lcm-client.com/belimo/matching/41911-03002/c8cb570d5127ae96aaae8eee6654c2de,ok,Automotive,Exption,n,,
456,457,Resistors,Panasonic,41911-03003,ERJ2RKF3003,ERJ2RKF3003X,https://app.lcm-client.com/belimo/matching/41911-03003/c8cb570d5127ae96aaae8eee6655059a,ok,Automotive,Exption,n,,
457,458,Resistors,Panasonic,41911-03300,ERJ2RKF3300,ERJ2RKF3300X,https://app.lcm-client.com/belimo/matching/41911-03300/c8cb570d5127ae96aaae8eee66553a8c,ok,Automotive,Exption,n,,
458,459,Resistors,Panasonic,41911-03302,ERJ2RKF3302,ERJ2RKF3302X,https://app.lcm-client.com/belimo/matching/41911-03302/c8cb570d5127ae96aaae8eee66555ae8,ok,Automotive,Exption,n,,
459,460,Resistors,Panasonic,41911-03303,ERJ2RKF3303,ERJ2RKF3303X,https://app.lcm-client.com/belimo/matching/41911-03303/c8cb570d5127ae96aaae8eee665598e9,ok,Automotive,Exption,n,,
460,461,Resistors,Panasonic,41911-03900,ERJ2RKF3900,ERJ2RKF3900X,https://app.lcm-client.com/belimo/matching/41911-03900/c8cb570d5127ae96aaae8eee6655be39,ok,Automotive,Exption,n,,
461,462,Resistors,Panasonic,41911-04302,ERJ2RKF4302,ERJ2RKF4302X,https://app.lcm-client.com/belimo/matching/41911-04302/c8cb570d5127ae96aaae8eee66560497,ok,Automotive,Exption,n,,
462,463,Resistors,Panasonic,41911-04701,ERJ2RKF4703,ERJ2RKF4703X,https://app.lcm-client.com/belimo/matching/41911-04701/c8cb570d5127ae96aaae8eee66567b38,ok,Automotive,Exption,n,,
463,464,Resistors,Panasonic,41911-08872,ERJ2RKF8872,ERJ2RKF8872X,https://app.lcm-client.com/belimo/matching/41911-08872/c8cb570d5127ae96aaae8eee6658f0ba,ok,Automotive,Exption,n,,
464,465,Resistors,Panasonic,42175-03602,ERJ2RKF3602,ERJ2RKF3602X,https://app.lcm-client.com/belimo/matching/42175-03602/c8cb570d5127ae96aaae8eee6659b0b1,ok,Automotive,Exption,n,,
465,466,Resistors,Panasonic,42175-08201,ERJ2RKF8201,ERJ2RKF8201X,https://app.lcm-client.com/belimo/matching/42175-08201/c8cb570d5127ae96aaae8eee6659c7f1,ok,Automotive,Exption,n,,
466,467,Resistors,Panasonic,40412-02701,ERJ-U03D2701V,ERJU03D2701V,https://app.lcm-client.com/belimo/matching/40412-02701/ef351458b324e0850a464074929e2bee,ok,Automotive,Exption,n,,
467,468,Resistors,Panasonic,40412-02701,ERJ-U3RD2701V,ERJU3RD2701V,https://app.lcm-client.com/belimo/matching/40412-02701/ef351458b324e0850a464074929e3613,ok,Automotive,Exption,n,,
468,469,Resistors,Panasonic,41861-01003,ERA2AEB104,ERA2AEB104X,https://app.lcm-client.com/belimo/matching/41861-01003/ef351458b324e0850a46407492ccb156,ok,Automotive,Exption,n,,
469,470,Resistors,Panasonic,41861-02001,ERA2AEB202,ERA2AEB202X,https://app.lcm-client.com/belimo/matching/41861-02001/ef351458b324e0850a46407492ccefa4,ok,Automotive,Exption,n,,
470,471,Resistors,Panasonic,41861-02702,ERA2AEB273,ERA2AEB273X,https://app.lcm-client.com/belimo/matching/41861-02702/ef351458b324e0850a46407492cd4c96,ok,Automotive,Exption,n,,
471,472,Resistors,Panasonic,41861-04702,ERJ2RKF4702,ERJ2RKF4702X,https://app.lcm-client.com/belimo/matching/41861-04702/ef351458b324e0850a46407492cd780d,ok,Automotive,Exption,n,,
472,473,Resistors,Panasonic,41861-06802,ERA2AEB683,ERA2AEB683X,https://app.lcm-client.com/belimo/matching/41861-06802/ef351458b324e0850a46407492cd95c0,ok,Automotive,Exption,n,,
473,474,Resistors,Panasonic,41911-01001,ERJ2RKF1001,ERJ2RKF1001X,https://app.lcm-client.com/belimo/matching/41911-01001/ef351458b324e0850a46407492ced498,ok,Automotive,Exption,n,,
474,475,Resistors,Panasonic,41911-05102,ERJ2RKF5102,ERJ2RKF5102X,https://app.lcm-client.com/belimo/matching/41911-05102/ef351458b324e0850a46407492d19988,ok,Automotive,Exption,n,,
475,476,Resistors,Panasonic,41911-05103,ERJ2RKF5103,ERJ2RKF5103X,https://app.lcm-client.com/belimo/matching/41911-05103/ef351458b324e0850a46407492d1cc89,ok,Automotive,Exption,n,,
476,477,Resistors,Panasonic,41911-05603,ERJ2RKF5603,ERJ2RKF5603X,https://app.lcm-client.com/belimo/matching/41911-05603/ef351458b324e0850a46407492d223fb,ok,Automotive,Exption,n,,
477,478,Resistors,Panasonic,41911-06201,ERJ2RKF6201,ERJ2RKF6201X,https://app.lcm-client.com/belimo/matching/41911-06201/ef351458b324e0850a46407492d2c3d1,ok,Automotive,Exption,n,,
478,479,Resistors,Panasonic,41911-06202,ERJ2RKF6202,ERJ2RKF6202X,https://app.lcm-client.com/belimo/matching/41911-06202/ef351458b324e0850a46407492d2fe25,ok,Automotive,Exption,n,,
479,480,Resistors,Panasonic,41911-06802,ERJ2RKF6802,ERJ2RKF6802X,https://app.lcm-client.com/belimo/matching/41911-06802/ef351458b324e0850a46407492d330e8,ok,Automotive,Exption,n,,
480,481,Resistors,Panasonic,41911-06803,ERJ2RKF6803,ERJ2RKF6803X,https://app.lcm-client.com/belimo/matching/41911-06803/ef351458b324e0850a46407492d3643a,ok,Automotive,Exption,n,,
481,482,Resistors,Panasonic,41911-06809,ERJ2RKF68R0,ERJ2RKF68R0X,https://app.lcm-client.com/belimo/matching/41911-06809/ef351458b324e0850a46407492d3ab42,ok,Automotive,Exption,n,,
482,483,Resistors,Panasonic,47673-00001,ERJ-6ENF1151V,ERJ6ENF1151V,https://app.lcm-client.com/belimo/matching/47673-00001/ef351458b324e0850a46407492de2ab2,ok,Automotive,Exption,n,,
483,484,Resistors,Panasonic,47678-00001,ERJ-6ENF4301V,ERJ6ENF4301V,https://app.lcm-client.com/belimo/matching/47678-00001/ef351458b324e0850a46407492de700b,ok,Automotive,Exption,n,,
484,485,Resistors,Panasonic,47682-00001,ERJ-6ENF1912V,ERJ6ENF1912V,https://app.lcm-client.com/belimo/matching/47682-00001/ef351458b324e0850a46407492decfd2,ok,Automotive,Exption,n,,
485,486,Resistors,TDK,40138,B57620C5102J,B57620C5102J062,https://app.lcm-client.com/belimo/matching/40138/ef351458b324e0850a464074929dd12c,ok,STD,Yes,y,Requires Update,https://app.lcm-client.com/belimo/part/40138

@ -0,0 +1,487 @@
,Pos,Category,Manufacturer,CPN,MPN,MPN_Matched,Link,Status,State,ROHS,report_belimo,Comment,CPN_Link
0,1,Resistors,Vishay,41749-01509,CMB02070X1509,CMB02070X1509JB200 ,https://app.lcm-client.com/belimo/matching/41749-01509/46de94ed90f9f5ccd2b17e508cf7765a,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/41749-01509
1,2,Resistors,Vishay,40613-01001,MCU08050D1001B,MCU08050D1001BP500,https://app.lcm-client.com/belimo/matching/40613-01001/a57dd45b8b8bfbbc6b72118464d732a4,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01001
2,3,Resistors,Vishay,40613-01002,MCU08050D1002B,MCU08050D1002BP500,https://app.lcm-client.com/belimo/matching/40613-01002/a57dd45b8b8bfbbc6b72118464d75801,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01002
3,4,Resistors,Vishay,40613-01152,MCU08050D1152B,MCU08050D1152BP500,https://app.lcm-client.com/belimo/matching/40613-01152/a57dd45b8b8bfbbc6b72118464d7859d,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01152
4,5,Resistors,Vishay,40613-01271,MCU08050D1271B,MCU08050D1271BP500,https://app.lcm-client.com/belimo/matching/40613-01271/a57dd45b8b8bfbbc6b72118464d7c5d9,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01271
5,6,Resistors,Vishay,40613-01300,MCU08050D1300B,MCU08050D1300BP500,https://app.lcm-client.com/belimo/matching/40613-01300/a57dd45b8b8bfbbc6b72118464d7dde1,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01300
6,7,Resistors,Vishay,40613-01502,MCU08050D1502B,MCU08050D1502BP500,https://app.lcm-client.com/belimo/matching/40613-01502/a57dd45b8b8bfbbc6b72118464d7f9ab,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01502
7,8,Resistors,Vishay,40613-01503,MCU08050D1503B,MCU08050D1503BP500,https://app.lcm-client.com/belimo/matching/40613-01503/a57dd45b8b8bfbbc6b72118464d80785,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01503
8,9,Resistors,Vishay,40613-01602,MCU08050D1602B,MCU08050D1602BP500,https://app.lcm-client.com/belimo/matching/40613-01602/a57dd45b8b8bfbbc6b72118464d82cc5,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01602
9,10,Resistors,Vishay,40613-02001,MCU08050D2001B,MCU08050D2001BP500,https://app.lcm-client.com/belimo/matching/40613-02001/a57dd45b8b8bfbbc6b72118464d863d6,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-02001
10,11,Resistors,Vishay,40617-01208,SMM02040C1208F,SMM02040C1208FB300,https://app.lcm-client.com/belimo/matching/40617-01208/a57dd45b8b8bfbbc6b72118464e27bef,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01208
11,12,Resistors,Vishay,40617-01208,MMA02040C1211F,MMA02040C1211FB300,https://app.lcm-client.com/belimo/matching/40617-01211/a57dd45b8b8bfbbc6b72118464e2d494,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01208
12,13,Resistors,Vishay, 40617-01211,SMM02040C1211F,SMM02040C1211FB300,https://app.lcm-client.com/belimo/matching/40617-01211/a57dd45b8b8bfbbc6b72118464e2d5e6,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/ 40617-01211
13,14,Resistors,Vishay,40617-01211,MMA02040C1308F,MMA02040C1308FB300,https://app.lcm-client.com/belimo/matching/40617-01308/a57dd45b8b8bfbbc6b72118464e330ad,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01211
14,15,Resistors,Vishay,40617-01308,SMM02040C1308F,SMM02040C1308FB300,https://app.lcm-client.com/belimo/matching/40617-01308/a57dd45b8b8bfbbc6b72118464e3356a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01308
15,16,Resistors,Vishay,40617-01308,MMA02040C1508F,MMA02040C1508FB300,https://app.lcm-client.com/belimo/matching/40617-01508/a57dd45b8b8bfbbc6b72118464e39977,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01308
16,17,Resistors,Vishay,40617-01508,SMM02040C1508F,SMM02040C1508FB300,https://app.lcm-client.com/belimo/matching/40617-01508/a57dd45b8b8bfbbc6b72118464e3a808,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01508
17,18,Resistors,Vishay,40617-01508,MMA02040C1509F,MMA02040C1509FB300,https://app.lcm-client.com/belimo/matching/40617-01509/a57dd45b8b8bfbbc6b72118464e40ddc,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01508
18,19,Resistors,Vishay,40617-01509,SMM02040C1509F,SMM02040C1509FB300,https://app.lcm-client.com/belimo/matching/40617-01509/a57dd45b8b8bfbbc6b72118464e41200,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01509
19,20,Resistors,Vishay,40617-01509,MMA02040C1800F,MMA02040C1800FB300,https://app.lcm-client.com/belimo/matching/40617-01800/a57dd45b8b8bfbbc6b72118464e48179,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01509
20,21,Resistors,Vishay,40617-03901,SMM02040C3901F,SMM02040C3901FB300,https://app.lcm-client.com/belimo/matching/40617-03901/a57dd45b8b8bfbbc6b72118464e91b53,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03901
21,22,Resistors,Vishay,40617-04301,MMA02040C4301F,MMA02040C4301FB300,https://app.lcm-client.com/belimo/matching/40617-04301/a57dd45b8b8bfbbc6b72118464e98b90,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04301
22,23,Resistors,Vishay,40617-04301,SMM02040C4301F,SMM02040C4301FB300,https://app.lcm-client.com/belimo/matching/40617-04301/a57dd45b8b8bfbbc6b72118464e9917e,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04301
23,24,Resistors,Vishay,40617-04700,MMA02040C4700F,MMA02040C4700FB300,https://app.lcm-client.com/belimo/matching/40617-04700/a57dd45b8b8bfbbc6b72118464ea276d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04700
24,25,Resistors,Vishay,40617-04700,SMM02040C4700F,SMM02040C4700FB300,https://app.lcm-client.com/belimo/matching/40617-04700/a57dd45b8b8bfbbc6b72118464ea2ceb,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04700
25,26,Resistors,Vishay,47180,MBB02070C1052F,MBB02070C1052FRP00,https://app.lcm-client.com/belimo/matching/47180/a57dd45b8b8bfbbc6b72118464f9e611,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47180
26,27,Resistors,Vishay,47181,MBB02070C7322F,MBB02070C7322FRP00,https://app.lcm-client.com/belimo/matching/47181/a57dd45b8b8bfbbc6b72118464fa0d74,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47181
27,28,Resistors,Vishay,47182,MBB02070C8062F,MBB02070C8062FR100 ,https://app.lcm-client.com/belimo/matching/47182/a57dd45b8b8bfbbc6b72118464fa284b,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47182
28,29,Resistors,Vishay,47183,MBB02070C2873F,MBB02070C2873FRP00,https://app.lcm-client.com/belimo/matching/47183/a57dd45b8b8bfbbc6b72118464fa487f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47183
29,30,Resistors,Vishay,47184,MBB02070C4304F,MBB02070C4304FRP00,https://app.lcm-client.com/belimo/matching/47184/a57dd45b8b8bfbbc6b72118464fa7121,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47184
30,31,Resistors,Vishay,47340,MBB02070C4531F,MBB02070C4531FRP00,https://app.lcm-client.com/belimo/matching/47340/a57dd45b8b8bfbbc6b72118464fbae15,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47340
31,32,Resistors,Vishay,47341,MBB02070C5601F,MBB02070C5601FRP00,https://app.lcm-client.com/belimo/matching/47341/a57dd45b8b8bfbbc6b72118464fbbb63,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47341
32,33,Resistors,Vishay,47342,MBB02070C4423F,MBB02070C4423FRP00,https://app.lcm-client.com/belimo/matching/47342/a57dd45b8b8bfbbc6b72118464fbd854,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47342
33,34,Resistors,Vishay,47343,MBB02070C2671F,MBB02070C2671FRP00,https://app.lcm-client.com/belimo/matching/47343/a57dd45b8b8bfbbc6b72118464fbf0df,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47343
34,35,Resistors,Vishay,47344,MBB02070C6202F,MBB02070C6202FRP00,https://app.lcm-client.com/belimo/matching/47344/a57dd45b8b8bfbbc6b72118464fc0ace,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47344
35,36,Resistors,Vishay,47355-01104,MBB02070C1104F,MBB02070C1104FRP00,https://app.lcm-client.com/belimo/matching/47355-01104/a57dd45b8b8bfbbc6b72118464fc27b6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01104
36,37,Resistors,Vishay,47355-01104,MRS25000C1104F,MRS25000C1104FRP00,https://app.lcm-client.com/belimo/matching/47355-01104/a57dd45b8b8bfbbc6b72118464fc3277,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01104
37,38,Resistors,Vishay,47355-01153,MBB02070C1153F,MBB02070C1153FRP00,https://app.lcm-client.com/belimo/matching/47355-01153/a57dd45b8b8bfbbc6b72118464fc55bf,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01153
38,39,Resistors,Vishay,47355-01153,MRS25000C1153F,MRS25000C1153FRP00 ,https://app.lcm-client.com/belimo/matching/47355-01153/a57dd45b8b8bfbbc6b72118464fc6578,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01153
39,40,Resistors,Vishay,47355-01208,MBB02070C1208F,MBB02070C1208FRP00,https://app.lcm-client.com/belimo/matching/47355-01208/a57dd45b8b8bfbbc6b72118464fc73ef,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01208
40,41,Resistors,Vishay,40617-04992,SMM02040C4992F,SMM02040C4992FB300,https://app.lcm-client.com/belimo/matching/40617-04992/c8cb570d5127ae96aaae8eee6648e367,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04992
41,42,Resistors,Vishay,40617-05109,MMA02040C5109F,MMA02040C5109FB300,https://app.lcm-client.com/belimo/matching/40617-05109/c8cb570d5127ae96aaae8eee66495230,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-05109
42,43,Resistors,Vishay,40617-05109,SMM02040C5109F,SMM02040C5109FB300,https://app.lcm-client.com/belimo/matching/40617-05109/c8cb570d5127ae96aaae8eee66496136,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-05109
43,44,Resistors,Vishay,40617-05601,MMA02040C5601F,MMA02040C5601FB300,https://app.lcm-client.com/belimo/matching/40617-05601/c8cb570d5127ae96aaae8eee6649c485,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-05601
44,45,Resistors,Vishay,40617-05601,SMM02040C5601F,SMM02040C5601FB300,https://app.lcm-client.com/belimo/matching/40617-05601/c8cb570d5127ae96aaae8eee6649c730,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-05601
45,46,Resistors,Vishay,40617-06208,MMA02040C6208F,MMA02040C6208FB300,https://app.lcm-client.com/belimo/matching/40617-06208/c8cb570d5127ae96aaae8eee664a2dc7,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06208
46,47,Resistors,Vishay,40617-06208,SMM02040C6208F,SMM02040C6208FB300,https://app.lcm-client.com/belimo/matching/40617-06208/c8cb570d5127ae96aaae8eee664a3d62,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06208
47,48,Resistors,Vishay,40617-06800,MMA02040C6800F,MMA02040C6800FB300,https://app.lcm-client.com/belimo/matching/40617-06800/c8cb570d5127ae96aaae8eee664aadfe,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06800
48,49,Resistors,Vishay,40617-06800,SMM02040C6800F,SMM02040C6800FB300,https://app.lcm-client.com/belimo/matching/40617-06800/c8cb570d5127ae96aaae8eee664ab3f4,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06800
49,50,Resistors,Vishay,40617-06801,MMA02040C6801F,MMA02040C6801FB300,https://app.lcm-client.com/belimo/matching/40617-06801/c8cb570d5127ae96aaae8eee664b9f72,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06801
50,51,Resistors,Vishay,40618-07502,CRCW251275K0JN,CRCW251275K0JNEG,https://app.lcm-client.com/belimo/matching/40618-07502/c8cb570d5127ae96aaae8eee664dbba8,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/40618-07502
51,52,Resistors,Vishay,40663-03307,MMB02070C3307J,MMB02070C3307JB200,https://app.lcm-client.com/belimo/matching/40663-03307/c8cb570d5127ae96aaae8eee664ded91,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40663-03307
52,53,Resistors,Vishay,40663-05107,MMB02070C5107J,MMB02070C5107JB200,https://app.lcm-client.com/belimo/matching/40663-05107/c8cb570d5127ae96aaae8eee664e0785,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40663-05107
53,54,Resistors,Vishay,40701-01001,PR01000101001F,PR01000101001FR500,https://app.lcm-client.com/belimo/matching/40701-01001/c8cb570d5127ae96aaae8eee664e1100,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40701-01001
54,55,Resistors,Vishay,40702,MBE04140C8200F,MBE04140C8200FR200,https://app.lcm-client.com/belimo/matching/40702/c8cb570d5127ae96aaae8eee664e2354,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40702
55,56,Resistors,Vishay,40703-04990,PR02000204990F,PR02000204990FR500,https://app.lcm-client.com/belimo/matching/40703-04990/c8cb570d5127ae96aaae8eee664e3084,nok,Automotive,Yes,y,Missing In LCM,https://app.lcm-client.com/belimo/part/40703-04990
56,57,Resistors,Vishay,40710-05600,CPF3560R00FKE,CPF3560R00FKEE6,https://app.lcm-client.com/belimo/matching/40710-05600/c8cb570d5127ae96aaae8eee664e4712,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40710-05600
57,58,Resistors,Vishay,40710-05600,CPF3560R00FLE,CPF3560R00FLE36,https://app.lcm-client.com/belimo/matching/40710-05600/c8cb570d5127ae96aaae8eee664e48da,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40710-05600
58,59,Resistors,Vishay,41917-02208,RCS12062R20JN,RCS12062R20JNEA,https://app.lcm-client.com/belimo/matching/41917-02208/c8cb570d5127ae96aaae8eee66591f88,ok,STD,Exption,n,,https://app.lcm-client.com/belimo/part/41917-02208
59,60,Resistors,Vishay,41917-02209,RCS120622R0JN,RCS120622R0JNEA,https://app.lcm-client.com/belimo/matching/41917-02209/c8cb570d5127ae96aaae8eee66593e8b,ok,STD,Exption,n,,https://app.lcm-client.com/belimo/part/41917-02209
60,61,Resistors,Vishay,47012-02371,MRS25000C2371F,MRS25000C2371FRP00,https://app.lcm-client.com/belimo/matching/47012-02371/c8cb570d5127ae96aaae8eee665ba18c,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-02371
61,62,Resistors,Vishay,47012-02400,MBB02070C2400F,MBB02070C2400FRP00,https://app.lcm-client.com/belimo/matching/47012-02400/c8cb570d5127ae96aaae8eee665bc184,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47012-02400
62,63,Resistors,Vishay,47012-02400,MRS25000C2400F,MRS25000C2400FRP00,https://app.lcm-client.com/belimo/matching/47012-02400/c8cb570d5127ae96aaae8eee665bcc30,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47012-02400
63,64,Resistors,Vishay,47072,MBB02070C3301F,MBB02070C3301FRP00,https://app.lcm-client.com/belimo/matching/47072/c8cb570d5127ae96aaae8eee665e3813,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47072
64,65,Resistors,Vishay,47080,MBB02070C1603F,MBB02070C1603FRP00,https://app.lcm-client.com/belimo/matching/47080/c8cb570d5127ae96aaae8eee665e5210,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47080
65,66,Resistors,Vishay,47100,MBB02070C4122F,MBB02070C4122FRP00,https://app.lcm-client.com/belimo/matching/47100/c8cb570d5127ae96aaae8eee665e71cc,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47100
66,67,Resistors,Vishay,47101,MBB02070C1479F,MBB02070C1479FRP00,https://app.lcm-client.com/belimo/matching/47101/c8cb570d5127ae96aaae8eee665e9aa1,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47101
67,68,Resistors,Vishay,47102,MBB02070C8871F,MBB02070C8871FRP00,https://app.lcm-client.com/belimo/matching/47102/c8cb570d5127ae96aaae8eee665eb013,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47102
68,69,Resistors,Vishay,47103,MBB02070C2491F,MBB02070C2491FRP00,https://app.lcm-client.com/belimo/matching/47103/c8cb570d5127ae96aaae8eee665ed09c,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47103
69,70,Resistors,Vishay,47122,MBB02070C1583F,MBB02070C1583FRP00,https://app.lcm-client.com/belimo/matching/47122/c8cb570d5127ae96aaae8eee665f1b46,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47122
70,71,Resistors,Vishay,47142,MBB02070C8201F,MBB02070C8201FRP00,https://app.lcm-client.com/belimo/matching/47142/c8cb570d5127ae96aaae8eee66606f98,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47142
71,72,Resistors,Vishay,47145,MBB02070C1203F,MBB02070C1203FRP00,https://app.lcm-client.com/belimo/matching/47145/c8cb570d5127ae96aaae8eee6660a704,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47145
72,73,Resistors,Vishay,47162,MBB02070C5362F,MBB02070C5362FRP00,https://app.lcm-client.com/belimo/matching/47162/c8cb570d5127ae96aaae8eee6660c3c6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47162
73,74,Resistors,Vishay,47168,MBB02070C3003F,MBB02070C3003FRP00,https://app.lcm-client.com/belimo/matching/47168/c8cb570d5127ae96aaae8eee6660fe68,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47168
74,75,Resistors,Vishay,47179,MBB02070C9760F,MBB02070C9760FRP00,https://app.lcm-client.com/belimo/matching/47179/c8cb570d5127ae96aaae8eee666120a3,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47179
75,76,Resistors,Vishay,40412-02701,CRCW06032K70DH,CRCW06032K70DHEAP,https://app.lcm-client.com/belimo/matching/40412-02701/ef351458b324e0850a464074929e4c4e,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/40412-02701
76,77,Resistors,Vishay,40412-02701,CRCW06032K70DK,CRCW06032K70DHEAP,https://app.lcm-client.com/belimo/matching/40412-02701/ef351458b324e0850a464074929e54c2,ok,Automotive,Exption,y,PPM Difference,https://app.lcm-client.com/belimo/part/40412-02701
77,78,Resistors,Vishay,40542,MBB02070C2702F,MBB02070C2702FRP00 ,https://app.lcm-client.com/belimo/matching/40542/ef351458b324e0850a464074929f8a38,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40542
78,79,Resistors,Vishay,40542,MBB0207IC2702F,MBB0207IC2702FRP00,https://app.lcm-client.com/belimo/matching/40542/ef351458b324e0850a464074929f962a,nok,Medical,Yes,y,Missing In LCM,https://app.lcm-client.com/belimo/part/40542
79,80,Resistors,Vishay,40542,MRS25000C2702F,MRS25000C2702FRP00,https://app.lcm-client.com/belimo/matching/40542/ef351458b324e0850a464074929f971d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40542
80,81,Resistors,Vishay,40602-01100,SMM02070C1100F,SMM02070C1100FBS00,https://app.lcm-client.com/belimo/matching/40602-01100/ef351458b324e0850a46407492a0fcf3,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01100
81,82,Resistors,Vishay,40602-01501,MMB02070C1501F,MMB02070C1501FB700,https://app.lcm-client.com/belimo/matching/40602-01501/ef351458b324e0850a46407492a1312e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01501
82,83,Resistors,Vishay,40602-01501,SMM02070C1501F,SMM02070C1501FBS00,https://app.lcm-client.com/belimo/matching/40602-01501/ef351458b324e0850a46407492a13317,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01501
83,84,Resistors,Vishay,40602-01503,MMB02070C1503F,MMB02070C1503FB200,https://app.lcm-client.com/belimo/matching/40602-01503/ef351458b324e0850a46407492a166ca,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01503
84,85,Resistors,Vishay,40602-01503,SMM02070C1503F,SMM02070C1503FBS00,https://app.lcm-client.com/belimo/matching/40602-01503/ef351458b324e0850a46407492a172df,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01503
85,86,Resistors,Vishay,40602-01801,MMB02070C1801F,MMB02070C1801FB700,https://app.lcm-client.com/belimo/matching/40602-01801/ef351458b324e0850a46407492a19e31,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01801
86,87,Resistors,Vishay,40602-01801,SMM02070C1801F,SMM02070C1801FBS00,https://app.lcm-client.com/belimo/matching/40602-01801/ef351458b324e0850a46407492a1adcd,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01801
87,88,Resistors,Vishay,40602-02201,MMB02070C2201F,MMB02070C2201FB700,https://app.lcm-client.com/belimo/matching/40602-02201/ef351458b324e0850a46407492a1e4d1,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02201
88,89,Resistors,Vishay,40602-02201,SMM02070C2201F,SMM02070C2201FBS00,https://app.lcm-client.com/belimo/matching/40602-02201/ef351458b324e0850a46407492a1e7f8,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02201
89,90,Resistors,Vishay,40602-02203,MMB02070C2203F,MMB02070C2203FB200,https://app.lcm-client.com/belimo/matching/40602-02203/ef351458b324e0850a46407492a21787,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02203
90,91,Resistors,Vishay,40602-04701,SMM02070C4701F,SMM02070C4701FBS00,https://app.lcm-client.com/belimo/matching/40602-04701/ef351458b324e0850a46407492a55cd6,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04701
91,92,Resistors,Vishay,40602-04702,MMB02070C4702F,MMB02070C4702FB200,https://app.lcm-client.com/belimo/matching/40602-04702/ef351458b324e0850a46407492a5987a,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04702
92,93,Resistors,Vishay,40602-04702,SMM02070C4702F,SMM02070C4702FBS00 ,https://app.lcm-client.com/belimo/matching/40602-04702/ef351458b324e0850a46407492a59e12,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04702
93,94,Resistors,Vishay,40602-04703,MMB02070C4703F,MMB02070C4703FB200 ,https://app.lcm-client.com/belimo/matching/40602-04703/ef351458b324e0850a46407492a5c84a,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04703
94,95,Resistors,Vishay,40602-04703,SMM02070C4703F,SMM02070C4703FBS00,https://app.lcm-client.com/belimo/matching/40602-04703/ef351458b324e0850a46407492a5cef1,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04703
95,96,Resistors,Vishay,40602-05100,MMB02070C5100F,MMB02070C5100FB700,https://app.lcm-client.com/belimo/matching/40602-05100/ef351458b324e0850a46407492a6213a,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05100
96,97,Resistors,Vishay,40602-05100,SMM02070C5100F,SMM02070C5100FBP00,https://app.lcm-client.com/belimo/matching/40602-05100/ef351458b324e0850a46407492a628ff,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05100
97,98,Resistors,Vishay,40602-05603,MMB02070C5603F,MMB02070C5603FB700,https://app.lcm-client.com/belimo/matching/40602-05603/ef351458b324e0850a46407492a653e8,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05603
98,99,Resistors,Vishay,40602-05603,SMM02070C5603F,SMM02070C5603FBS00,https://app.lcm-client.com/belimo/matching/40602-05603/ef351458b324e0850a46407492a65dfb,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05603
99,100,Resistors,Vishay,40602-05607,MMB02070C5607F,MMB02070C5607FB200,https://app.lcm-client.com/belimo/matching/40602-05607/ef351458b324e0850a46407492a66cc9,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05607
100,101,Resistors,Vishay,40613-02002,MCU08050D2002B,MCU08050D2002BP500,https://app.lcm-client.com/belimo/matching/40613-02002/a57dd45b8b8bfbbc6b72118464d889cb,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-02002
101,102,Resistors,Vishay,40613-02432,MCU08050D2431B,MCU08050D2431BP500,https://app.lcm-client.com/belimo/matching/40613-02432/a57dd45b8b8bfbbc6b72118464d8b980,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-02432
102,103,Resistors,Vishay,40613-03321,MCU08050D3321B,MCU08050D3321BP500,https://app.lcm-client.com/belimo/matching/40613-03321/a57dd45b8b8bfbbc6b72118464d8ef7d,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-03321
103,104,Resistors,Vishay,40613-03601,MCU08050D3601B,MCU08050D3601BP500,https://app.lcm-client.com/belimo/matching/40613-03601/a57dd45b8b8bfbbc6b72118464d918c6,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-03601
104,105,Resistors,Vishay,40613-04022,MCU08050D4022B,MCU08050D4022BP500,https://app.lcm-client.com/belimo/matching/40613-04022/a57dd45b8b8bfbbc6b72118464da3edf,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-04022
105,106,Resistors,Vishay,40613-06802,MCU08050D6802B,MCU08050D6802BP500,https://app.lcm-client.com/belimo/matching/40613-06802/a57dd45b8b8bfbbc6b72118464da579b,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-06802
106,107,Resistors,Vishay,40613-07871,MCU08050D7871B,MCU08050D7871BP500,https://app.lcm-client.com/belimo/matching/40613-07871/a57dd45b8b8bfbbc6b72118464da6f4d,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-07871
107,108,Resistors,Vishay,40613-09762,MCU08050D9762B,MCU08050D9762BP500,https://app.lcm-client.com/belimo/matching/40613-09762/a57dd45b8b8bfbbc6b72118464da97e7,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-09762
108,109,Resistors,Vishay,40617-01204,MMA02040C1205F,MMA02040C1205FB300,https://app.lcm-client.com/belimo/matching/40617-01204/a57dd45b8b8bfbbc6b72118464e1f209,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01204
109,110,Resistors,Vishay,40617-01208,MMA02040C1208F,MMA02040C1208FB300,https://app.lcm-client.com/belimo/matching/40617-01208/a57dd45b8b8bfbbc6b72118464e26c1f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01208
110,111,Resistors,Vishay,47215,MBB02070C3603F,MBB02070C3603FRP00,https://app.lcm-client.com/belimo/matching/47215/a57dd45b8b8bfbbc6b72118464fa91aa,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47215
111,112,Resistors,Vishay,47232,MBB02070C5622F,MBB02070C5622FRP00,https://app.lcm-client.com/belimo/matching/47232/a57dd45b8b8bfbbc6b72118464fabb7c,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47232
112,113,Resistors,Vishay,47245,MBB02070C1330F,MBB02070C1330FRP00,https://app.lcm-client.com/belimo/matching/47245/a57dd45b8b8bfbbc6b72118464fadaf4,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47245
113,114,Resistors,Vishay,47251,MBB02070C1371F,MBB02070C1371FRP00,https://app.lcm-client.com/belimo/matching/47251/a57dd45b8b8bfbbc6b72118464faf77a,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47251
114,115,Resistors,Vishay,47274,MBB02070C1108F,MBB02070C1108FRP00,https://app.lcm-client.com/belimo/matching/47274/a57dd45b8b8bfbbc6b72118464fb1287,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47274
115,116,Resistors,Vishay,47313,MBB02070C3303F,MBB02070C3303FRP00,https://app.lcm-client.com/belimo/matching/47313/a57dd45b8b8bfbbc6b72118464fb22db,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47313
116,117,Resistors,Vishay,47315,MBB02070C1604F,MBB02070C1604FRP00,https://app.lcm-client.com/belimo/matching/47315/a57dd45b8b8bfbbc6b72118464fb3e0d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47315
117,118,Resistors,Vishay,47316,MBB02070C4704F,MBB02070C4704FRP00,https://app.lcm-client.com/belimo/matching/47316/a57dd45b8b8bfbbc6b72118464fb5c4f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47316
118,119,Resistors,Vishay,47337,MBB02070C2002F,MBB02070C2002FRP00,https://app.lcm-client.com/belimo/matching/47337/a57dd45b8b8bfbbc6b72118464fb756d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47337
119,120,Resistors,Vishay,47339,MBB02070C6802F,MBB02070C6802FRP00,https://app.lcm-client.com/belimo/matching/47339/a57dd45b8b8bfbbc6b72118464fb8f39,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47339
120,121,Resistors,Vishay,40617-06801,SMM02040C6801F,SMM02040C6801FB000,https://app.lcm-client.com/belimo/matching/40617-06801/c8cb570d5127ae96aaae8eee664ba638,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06801
121,122,Resistors,Vishay,40617-06807,MMA02040C6807F,MMA02040C6807FB300,https://app.lcm-client.com/belimo/matching/40617-06807/c8cb570d5127ae96aaae8eee664c0b79,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06807
122,123,Resistors,Vishay,40617-06807,SMM02040B6807J,SMM02040B6807JB000,https://app.lcm-client.com/belimo/matching/40617-06807/c8cb570d5127ae96aaae8eee664c1061,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06807
123,124,Resistors,Vishay,40617-07502,MMA02040C7502F,MMA02040C7502FB200,https://app.lcm-client.com/belimo/matching/40617-07502/c8cb570d5127ae96aaae8eee664c7046,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-07502
124,125,Resistors,Vishay,40617-07502,SMM02040C7502F,SMM02040C7502FB000,https://app.lcm-client.com/belimo/matching/40617-07502/c8cb570d5127ae96aaae8eee664c780d,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-07502
125,126,Resistors,Vishay,40617-09107,MMA02040C9107F,MMA02040C9107FB300,https://app.lcm-client.com/belimo/matching/40617-09107/c8cb570d5127ae96aaae8eee664cd373,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-09107
126,127,Resistors,Vishay,40617-09107,SMM02040C9107F,SMM02040C9107FB000,https://app.lcm-client.com/belimo/matching/40617-09107/c8cb570d5127ae96aaae8eee664cd73a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-09107
127,128,Resistors,Vishay,40618-01001,CRCW25121K00JN,CRCW25121K00JNEG,https://app.lcm-client.com/belimo/matching/40618-01001/c8cb570d5127ae96aaae8eee664d0cdc,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/40618-01001
128,129,Resistors,Vishay,40618-01501,CRCW25121K50JN,CRCW25121K50JNEG,https://app.lcm-client.com/belimo/matching/40618-01501/c8cb570d5127ae96aaae8eee664d2f90,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/40618-01501
129,130,Resistors,Vishay,40618-02401,CRCW25122K40JN,CRCW25122K40JNEG,https://app.lcm-client.com/belimo/matching/40618-02401/c8cb570d5127ae96aaae8eee664d5a8d,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/40618-02401
130,131,Resistors,Vishay,47123,MBB02070C1873F,MBB02070C1873FRP00,https://app.lcm-client.com/belimo/matching/47123/c8cb570d5127ae96aaae8eee665f3f95,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47123
131,132,Resistors,Vishay,47125,MBB02070C1008F,MBB02070C1008FRP00,https://app.lcm-client.com/belimo/matching/47125/c8cb570d5127ae96aaae8eee665f5b74,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47125
132,133,Resistors,Vishay,47131,MBB02070C6193F,MBB02070C6193FRP00,https://app.lcm-client.com/belimo/matching/47131/c8cb570d5127ae96aaae8eee665f8495,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47131
133,134,Resistors,Vishay,47132,MBB02070C3323F,MBB02070C3323FRP00,https://app.lcm-client.com/belimo/matching/47132/c8cb570d5127ae96aaae8eee665fa357,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47132
134,135,Resistors,Vishay,47133,MBB02070C1433F,MBB02070C1433FRP00,https://app.lcm-client.com/belimo/matching/47133/c8cb570d5127ae96aaae8eee665fc181,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47133
135,136,Resistors,Vishay,47137,MBB02070C4700F,MBB02070C4700FRP00,https://app.lcm-client.com/belimo/matching/47137/c8cb570d5127ae96aaae8eee665fddc6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47137
136,137,Resistors,Vishay,47138,MBB02070C1653F,MBB02070C1653FRP00,https://app.lcm-client.com/belimo/matching/47138/c8cb570d5127ae96aaae8eee6660128b,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47138
137,138,Resistors,Vishay,47139,MBB02070C9104F,MBB02070C9104FRP00,https://app.lcm-client.com/belimo/matching/47139/c8cb570d5127ae96aaae8eee66602471,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47139
138,139,Resistors,Vishay,47140,MBB02070C3652F,MBB02070C3652FRP00,https://app.lcm-client.com/belimo/matching/47140/c8cb570d5127ae96aaae8eee6660397f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47140
139,140,Resistors,Vishay,47141,MBB02070C4873F,MBB02070C4873FRP00,https://app.lcm-client.com/belimo/matching/47141/c8cb570d5127ae96aaae8eee66605f85,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47141
140,141,Resistors,Vishay,40602-02203,SMM02070C2203F,SMM02070C2203FBS00,https://app.lcm-client.com/belimo/matching/40602-02203/ef351458b324e0850a46407492a2262b,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02203
141,142,Resistors,Vishay,40602-02204,MMB02070C2204F,MMB02070C2204FB200,https://app.lcm-client.com/belimo/matching/40602-02204/ef351458b324e0850a46407492a250b9,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02204
142,143,Resistors,Vishay,40602-02204,SMM02070C2204F,SMM02070C2204FBS00,https://app.lcm-client.com/belimo/matching/40602-02204/ef351458b324e0850a46407492a2542a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02204
143,144,Resistors,Vishay,40602-02401,MMB02070C2401F,MMB02070C2401FB200,https://app.lcm-client.com/belimo/matching/40602-02401/ef351458b324e0850a46407492a28bcc,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02401
144,145,Resistors,Vishay,40602-02401,SMM02070C2401F,SMM02070C2401FBS00,https://app.lcm-client.com/belimo/matching/40602-02401/ef351458b324e0850a46407492a295bf,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02401
145,146,Resistors,Vishay,40602-02402,MMB02070C2402F,MMB02070C2402FB200,https://app.lcm-client.com/belimo/matching/40602-02402/ef351458b324e0850a46407492a2d0e4,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02402
146,147,Resistors,Vishay,40602-02402,SMM02070C2402F,SMM02070C2402FBS00,https://app.lcm-client.com/belimo/matching/40602-02402/ef351458b324e0850a46407492a2d8ad,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02402
147,148,Resistors,Vishay,40602-02403,MMB02070C2403F,MMB02070C2403FB700,https://app.lcm-client.com/belimo/matching/40602-02403/ef351458b324e0850a46407492a2f357,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02403
148,149,Resistors,Vishay,40602-02403,SMM02070C2403F,SMM02070C2403FBP00,https://app.lcm-client.com/belimo/matching/40602-02403/ef351458b324e0850a46407492a2ffb8,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02403
149,150,Resistors,Vishay,40602-02491,MMB02070C2491F,MMB02070C2491FB700,https://app.lcm-client.com/belimo/matching/40602-02491/ef351458b324e0850a46407492a32ce6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02491
150,151,Resistors,Vishay,40602-06209,MMB02070C6209F,MMB02070C6209FB200,https://app.lcm-client.com/belimo/matching/40602-06209/ef351458b324e0850a46407492a6a237,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-06209
151,152,Resistors,Vishay,40602-06209,SMM02070C6209F,SMM02070C6209FBP00,https://app.lcm-client.com/belimo/matching/40602-06209/ef351458b324e0850a46407492a6a9a2,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-06209
152,153,Resistors,Vishay,40602-07502,MMB02070C7502F,MMB02070C7502FB700,https://app.lcm-client.com/belimo/matching/40602-07502/ef351458b324e0850a46407492a6e1c2,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-07502
153,154,Resistors,Vishay,40602-07502,SMM02070C7502F,SMM02070C7502FBS00,https://app.lcm-client.com/belimo/matching/40602-07502/ef351458b324e0850a46407492a6ee06,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-07502
154,155,Resistors,Vishay,40602-08063,MMB02070C8063F,MMB02070C8063FB700,https://app.lcm-client.com/belimo/matching/40602-08063/ef351458b324e0850a46407492a7303b,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08063
155,156,Resistors,Vishay,40602-08063,SMM02070C8063F,SMM02070C8063FBP00,https://app.lcm-client.com/belimo/matching/40602-08063/ef351458b324e0850a46407492a737bf,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08063
156,157,Resistors,Vishay,40602-08202,MMB02070C8202F,MMB02070C8202FB300,https://app.lcm-client.com/belimo/matching/40602-08202/ef351458b324e0850a46407492a76d3e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08202
157,158,Resistors,Vishay,40602-08202,SMM02070C8202F,SMM02070C8202FBS00,https://app.lcm-client.com/belimo/matching/40602-08202/ef351458b324e0850a46407492a770da,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08202
158,159,Resistors,Vishay,40602-08207,MMB02070C8207F,MMB02070C8207FB200,https://app.lcm-client.com/belimo/matching/40602-08207/ef351458b324e0850a46407492a78da5,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08207
159,160,Resistors,Vishay,40602-09100,MMB02070C9100F,MMB02070C9100FB700,https://app.lcm-client.com/belimo/matching/40602-09100/ef351458b324e0850a46407492a7a753,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-09100
160,161,Resistors,Vishay,40617-01108,SMM02040C1108F,SMM02040C1108FB300,https://app.lcm-client.com/belimo/matching/40617-01108/ef351458b324e0850a46407492bb4cca,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01108
161,162,Resistors,Vishay,40617-01201,MMA02040C1201F,MMA02040C1201FB300,https://app.lcm-client.com/belimo/matching/40617-01201/ef351458b324e0850a46407492bb95e2,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01201
162,163,Resistors,Vishay,40617-01201,SMM02040C1201F,SMM02040C1201FB000,https://app.lcm-client.com/belimo/matching/40617-01201/ef351458b324e0850a46407492bb972a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01201
163,164,Resistors,Vishay,40617-01202,MMA02040C1202F,MMA02040C1202FB000,https://app.lcm-client.com/belimo/matching/40617-01202/ef351458b324e0850a46407492bbf6a3,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01202
164,165,Resistors,Vishay,40617-01202,SMM02040C1202F,SMM02040C1202FB000,https://app.lcm-client.com/belimo/matching/40617-01202/ef351458b324e0850a46407492bbfc0f,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01202
165,166,Resistors,Vishay,40617-01801,MMA02040C1801F,MMA02040C1801FB000,https://app.lcm-client.com/belimo/matching/40617-01801/ef351458b324e0850a46407492be01bb,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01801
166,167,Resistors,Vishay,40617-01801,SMM02040C1801F,SMM02040C1801FB000,https://app.lcm-client.com/belimo/matching/40617-01801/ef351458b324e0850a46407492be0e90,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01801
167,168,Resistors,Vishay,40617-01808,MMA02040C1808F,MMA02040C1808FB000,https://app.lcm-client.com/belimo/matching/40617-01808/ef351458b324e0850a46407492be536e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01808
168,169,Resistors,Vishay,40617-01808,SMM02040C1808F,SMM02040C1808FB300,https://app.lcm-client.com/belimo/matching/40617-01808/ef351458b324e0850a46407492be5915,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01808
169,170,Resistors,Vishay,40617-02002,MMA02040C2002F,MMA02040C2002FB300,https://app.lcm-client.com/belimo/matching/40617-02002/ef351458b324e0850a46407492becaa5,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02002
170,171,Resistors,Vishay,40754,PR02FS0205608K,PR02FS0205608KR500,https://app.lcm-client.com/belimo/matching/40754/ef351458b324e0850a46407492c56031,nok,Automotive,Yes,y,Requires Update,https://app.lcm-client.com/belimo/part/40754
171,172,Resistors,Vishay,40754-01502,CPF215K000JN,CPF215K000JNEE6,https://app.lcm-client.com/belimo/matching/40754/ef351458b324e0850a46407492c56031,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40754-01502
172,173,Resistors,Vishay,40754-01502,PR02000201502J,PR02000201502JR500,https://app.lcm-client.com/belimo/matching/40754-01502/ef351458b324e0850a46407492c57dde,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40754-01502
173,174,Resistors,Vishay,40754-08201,CPF28K2000JN,CPF28K2000JNEE6,https://app.lcm-client.com/belimo/matching/40754-08201/ef351458b324e0850a46407492c580d0,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40754-08201
174,175,Resistors,Vishay,40754-08201,PR02000208201J,PR02000208201JR500,https://app.lcm-client.com/belimo/matching/40754-08201/ef351458b324e0850a46407492c5908d,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40754-08201
175,176,Resistors,Vishay,40754-15608,CPF25R6000JN,CPF25R6000JNEE6,https://app.lcm-client.com/belimo/matching/40754-15608/ef351458b324e0850a46407492c5b5db,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40754-15608
176,177,Resistors,Vishay,40754-15608,PR02000205608J,PR02000205608JR500,https://app.lcm-client.com/belimo/matching/40754-15608/ef351458b324e0850a46407492c5bcec,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40754-15608
177,178,Resistors,Vishay,40850,MBB02070C1101F,MBB02070C1101FRP00,https://app.lcm-client.com/belimo/matching/40850/ef351458b324e0850a46407492c6a39a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40850
178,179,Resistors,Vishay,40850,MRS25000C1101F,MRS25000C1101FRP00,https://app.lcm-client.com/belimo/matching/40850/ef351458b324e0850a46407492c6a870,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40850
179,180,Resistors,Vishay,40851,MBB02070C1501F,MBB02070C1501FRP00,https://app.lcm-client.com/belimo/matching/40851/ef351458b324e0850a46407492c6be78,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40851
180,181,Resistors,Vishay,40862,MRS25000C2203F,MRS25000C2203FRP00,https://app.lcm-client.com/belimo/matching/40862/ef351458b324e0850a46407492c741c4,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40862
181,182,Resistors,Vishay,40867,MBB02070C2403F,MBB02070C2403FRP00,https://app.lcm-client.com/belimo/matching/40867/ef351458b324e0850a46407492c751d7,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40867
182,183,Resistors,Vishay,40867,MRS25000C2403F,MRS25000C2403FRP00,https://app.lcm-client.com/belimo/matching/40867/ef351458b324e0850a46407492c755f8,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40867
183,184,Resistors,Vishay,40877,MBB02070C8661F,MBB02070C8661FRP00,https://app.lcm-client.com/belimo/matching/40877/ef351458b324e0850a46407492c770f6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40877
184,185,Resistors,Vishay,40877,MRS25000C8661F,MRS25000C8661FRP00,https://app.lcm-client.com/belimo/matching/40877/ef351458b324e0850a46407492c77fc8,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40877
185,186,Resistors,Vishay,40885,MBB02070C4221F,MBB02070C4221FRP00,https://app.lcm-client.com/belimo/matching/40885/ef351458b324e0850a46407492c78d94,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40885
186,187,Resistors,Vishay,40885,MRS25000C4221F,MRS25000C4221FRP00,https://app.lcm-client.com/belimo/matching/40885/ef351458b324e0850a46407492c791fe,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40885
187,188,Resistors,Vishay,40897,MBB02070C1009F,MBB02070C1009FRP00,https://app.lcm-client.com/belimo/matching/40897/ef351458b324e0850a46407492c85cab,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40897
188,189,Resistors,Vishay,40897,MRS25000C1009F,MRS25000C1009FRP00,https://app.lcm-client.com/belimo/matching/40897/ef351458b324e0850a46407492c85f06,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40897
189,190,Resistors,Vishay,40898,MBB02070C1102F,MBB02070C1102FRP00,https://app.lcm-client.com/belimo/matching/40898/ef351458b324e0850a46407492c87371,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40898
190,191,Resistors,Vishay,40926,MRS25000C8202F,MRS25000C8202FRP00,https://app.lcm-client.com/belimo/matching/40926/ef351458b324e0850a46407492c9893e,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40926
191,192,Resistors,Vishay,40927,MBB02070C1003F,MBB02070C1003FRP00,https://app.lcm-client.com/belimo/matching/40927/ef351458b324e0850a46407492c99e8a,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40927
192,193,Resistors,Vishay,40927,MRS25000C1003F,MRS25000C1003FRP00,https://app.lcm-client.com/belimo/matching/40927/ef351458b324e0850a46407492c9aaf7,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40927
193,194,Resistors,Vishay,40934,MRS25000C6202F,MRS25000C6202FRP00,https://app.lcm-client.com/belimo/matching/40934/ef351458b324e0850a46407492c9d6ee,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40934
194,195,Resistors,Vishay,40941,MBB02070C5602F,MBB02070C5602FRP00,https://app.lcm-client.com/belimo/matching/40941/ef351458b324e0850a46407492c9f1f8,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40941
195,196,Resistors,Vishay,40941,MRS25000C5602F,MRS25000C5602FRP00,https://app.lcm-client.com/belimo/matching/40941/ef351458b324e0850a46407492c9f940,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40941
196,197,Resistors,Vishay,40949,MBB02070C1500F,MBB02070C1500FRP00,https://app.lcm-client.com/belimo/matching/40949/ef351458b324e0850a46407492ca0e61,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40949
197,198,Resistors,Vishay,40949,MRS25000C1500F,MRS25000C1500FRP00,https://app.lcm-client.com/belimo/matching/40949/ef351458b324e0850a46407492ca16be,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40949
198,199,Resistors,Vishay,41237-01102,MMA02040D1102C,MMA02040D1102CB300,https://app.lcm-client.com/belimo/matching/40949/ef351458b324e0850a46407492ca16be,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/41237-01102
199,200,Resistors,Vishay,41749-02200,CMB02070X2200G,CMB02070X2200GB700,https://app.lcm-client.com/belimo/matching/41749-02200/ef351458b324e0850a46407492cb2e74,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/41749-02200
200,201,Resistors,Vishay,41861-02001,MCS04020D2001B,MCS04020D2001BE000,https://app.lcm-client.com/belimo/matching/41861-02001/ef351458b324e0850a46407492cd04a3,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/41861-02001
201,202,Resistors,Vishay,41861-02053,MCS04020D2053B,MCS04020D2053BE000,https://app.lcm-client.com/belimo/matching/41861-02053/ef351458b324e0850a46407492cd3674,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/41861-02053
202,203,Resistors,Vishay,41861-02702,MCS04020D2702B,MCS04020D2702BE000,https://app.lcm-client.com/belimo/matching/41861-02702/ef351458b324e0850a46407492cd5b69,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/41861-02702
203,204,Resistors,Vishay,41861-06802,MCS04020D6802B,MCS04020D6802BE000,https://app.lcm-client.com/belimo/matching/41861-06802/ef351458b324e0850a46407492cd9fd4,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/41861-06802
204,205,Resistors,Vishay,47012-02550,MBB02070C2550F,MBB02070C2550FRP00,https://app.lcm-client.com/belimo/matching/47012-02550/ef351458b324e0850a46407492d6899c,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/47012-02550
205,206,Resistors,Vishay,47012-02550,MRS25000C2550F,MRS25000C2550FRP00,https://app.lcm-client.com/belimo/matching/47012-02550/ef351458b324e0850a46407492d68c0f,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-02550
206,207,Resistors,Vishay,47012-03303,MRS25000C3303F,MRS25000C3303FRP00,https://app.lcm-client.com/belimo/matching/47012-03303/ef351458b324e0850a46407492d6aa08,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-03303
207,208,Resistors,Vishay,47012-03308,MBB02070C3308F,MBB02070C3308FRP00,https://app.lcm-client.com/belimo/matching/47012-03308/ef351458b324e0850a46407492d6c42d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47012-03308
208,209,Resistors,Vishay,47012-03308,MRS25000C3308F,MRS25000C3308FRP00,https://app.lcm-client.com/belimo/matching/47012-03308/ef351458b324e0850a46407492d6d03b,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-03308
209,210,Resistors,Vishay,47012-03830,MBB02070C3830F,MBB02070C3830FRP00,https://app.lcm-client.com/belimo/matching/47012-03830/ef351458b324e0850a46407492d6eaad,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/47012-03830
210,211,Resistors,Vishay,47042,MBB02070C1503F,MBB02070C1503FRP00,https://app.lcm-client.com/belimo/matching/47042/ef351458b324e0850a46407492d86be4,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/47042
211,212,Resistors,Vishay,47355-01279,MBB02070C1279F,MBB02070C1279FRP00,https://app.lcm-client.com/belimo/matching/47355-01279/ef351458b324e0850a46407492db9a16,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01279
212,213,Resistors,Vishay,47355-01279,MRS25000C1279F,MRS25000C1279FRP00,https://app.lcm-client.com/belimo/matching/47355-01279/ef351458b324e0850a46407492dba77c,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01279
213,214,Resistors,Vishay,47355-01501,MRS25000C1501F,MRS25000C1501FRP00,https://app.lcm-client.com/belimo/matching/47355-01501/ef351458b324e0850a46407492dbc315,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01501
214,215,Resistors,Vishay,47355-01653,MRS25000C1653F,MRS25000C1653FRP00,https://app.lcm-client.com/belimo/matching/47355-01653/ef351458b324e0850a46407492dbf3fd,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01653
215,216,Resistors,Vishay,47355-02671,MRS25000C2671F,MRS25000C2671FRP00,https://app.lcm-client.com/belimo/matching/47355-02671/ef351458b324e0850a46407492dc5b8c,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-02671
216,217,Resistors,Vishay,47355-03301,MRS25000C3301F,MRS25000C3301FRP00,https://app.lcm-client.com/belimo/matching/47355-03301/ef351458b324e0850a46407492dc82bf,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-03301
217,218,Resistors,Vishay,47355-05609,MBB02070C5609F,MBB02070C5609FRP00,https://app.lcm-client.com/belimo/matching/47355-05609/ef351458b324e0850a46407492dcab28,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-05609
218,219,Resistors,Vishay,47355-05609,MRS25000C5609F,MRS25000C5609FRP00,https://app.lcm-client.com/belimo/matching/47355-05609/ef351458b324e0850a46407492dcb421,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-05609
219,220,Resistors,Vishay,47355-05762,MBB02070C5762F,MBB02070C5762FRP00,https://app.lcm-client.com/belimo/matching/47355-05762/ef351458b324e0850a46407492dcdf45,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-05762
220,221,Resistors,Vishay,40617-01800,SMM02040C1800F,SMM02040C1800FB000,https://app.lcm-client.com/belimo/matching/40617-01800/a57dd45b8b8bfbbc6b72118464e48be7,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01800
221,222,Resistors,Vishay,40617-03001,MMA02040C3001F,MMA02040C3001FB000,https://app.lcm-client.com/belimo/matching/40617-03001/a57dd45b8b8bfbbc6b72118464e73cce,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03001
222,223,Resistors,Vishay,40617-03001,SMM02040C3001F,SMM02040C3001FB000,https://app.lcm-client.com/belimo/matching/40617-03001/a57dd45b8b8bfbbc6b72118464e74406,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03001
223,224,Resistors,Vishay,40617-03008,MMA02040C3008F,MMA02040C3008FB000,https://app.lcm-client.com/belimo/matching/40617-03008/a57dd45b8b8bfbbc6b72118464e79b6e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03008
224,225,Resistors,Vishay,40617-03008,SMM02040C3008F,SMM02040C3008FB000,https://app.lcm-client.com/belimo/matching/40617-03008/a57dd45b8b8bfbbc6b72118464e7a30e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03008
225,226,Resistors,Vishay,40617-03301,MMA02040C3301F,MMA02040C3301FB000,https://app.lcm-client.com/belimo/matching/40617-03301/a57dd45b8b8bfbbc6b72118464e81354,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03301
226,227,Resistors,Vishay,40617-03301,SMM02040C3301F,SMM02040C3301FB000,https://app.lcm-client.com/belimo/matching/40617-03301/a57dd45b8b8bfbbc6b72118464e818d6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03301
227,228,Resistors,Vishay,40617-03303,MMA02040C3303F,MMA02040C3303FB000,https://app.lcm-client.com/belimo/matching/40617-03303/a57dd45b8b8bfbbc6b72118464e88cee,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03303
228,229,Resistors,Vishay,40617-03303,SMM02040C3303F,SMM02040C3303FB000,https://app.lcm-client.com/belimo/matching/40617-03303/a57dd45b8b8bfbbc6b72118464e896d0,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03303
229,230,Resistors,Vishay,40617-03901,MMA02040C3901F,MMA02040C3901FB000,https://app.lcm-client.com/belimo/matching/40617-03901/a57dd45b8b8bfbbc6b72118464e90c53,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03901
230,231,Resistors,Vishay,47001,MBB02070C1202F,MBB02070C1202FRP00,https://app.lcm-client.com/belimo/matching/47001/c8cb570d5127ae96aaae8eee665a9f99,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47001
231,232,Resistors,Vishay,47002,MBB02070C1000F,MBB02070C1000FRP00,https://app.lcm-client.com/belimo/matching/47002/c8cb570d5127ae96aaae8eee665abee6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47002
232,233,Resistors,Vishay,47004,MBB02070C1804F,MBB02070C1804FRP00,https://app.lcm-client.com/belimo/matching/47004/c8cb570d5127ae96aaae8eee665ae642,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47004
233,234,Resistors,Vishay,47007,MBB02070C3002F,MBB02070C3002FRP00,https://app.lcm-client.com/belimo/matching/47007/c8cb570d5127ae96aaae8eee665b0d45,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47007
234,235,Resistors,Vishay,47008,MBB02070C4701F,MBB02070C4701FRP00,https://app.lcm-client.com/belimo/matching/47008/c8cb570d5127ae96aaae8eee665b34df,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47008
235,236,Resistors,Vishay,47011,MBB02070C1502F,MBB02070C1502FRP00,https://app.lcm-client.com/belimo/matching/47011/c8cb570d5127ae96aaae8eee665b5e12,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47011
236,237,Resistors,Vishay,47012-01001,MBB02070C1001F,MBB02070C1001FRP00,https://app.lcm-client.com/belimo/matching/47012-01001/c8cb570d5127ae96aaae8eee665b7c87,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47012-01001
237,238,Resistors,Vishay,47012-01001,MRS25000C1001F,MRS25000C1001FRP00,https://app.lcm-client.com/belimo/matching/47012-01001/c8cb570d5127ae96aaae8eee665b7ef3,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-01001
238,239,Resistors,Vishay,47012-02371,MBB02070C2371F,MBB02070C2371FRP00,https://app.lcm-client.com/belimo/matching/47012-02371/c8cb570d5127ae96aaae8eee665b92cf,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47012-02371
239,240,Resistors,Vishay,40602-01100,MMB02070C1100F,MMB02070C1100FB700,https://app.lcm-client.com/belimo/matching/40602-01100/ef351458b324e0850a46407492a0f34b,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01100
240,241,Resistors,Vishay,40602-02491,SMM02070C2491F,SMM02070C2491FBP00,https://app.lcm-client.com/belimo/matching/40602-02491/ef351458b324e0850a46407492a32d66,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02491
241,242,Resistors,Vishay,40602-02703,MMB02070C2703F,MMB02070C2703FB700,https://app.lcm-client.com/belimo/matching/40602-02703/ef351458b324e0850a46407492a36b57,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02703
242,243,Resistors,Vishay,40602-02703,SMM02070C2703F,SMM02070C2703FBS00,https://app.lcm-client.com/belimo/matching/40602-02703/ef351458b324e0850a46407492a3748f,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02703
243,244,Resistors,Vishay,40602-03000,MMB02070C3000F,MMB02070C3000FB700,https://app.lcm-client.com/belimo/matching/40602-03000/ef351458b324e0850a46407492a3b4b3,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-03000
244,245,Resistors,Vishay,40602-03000,SMM02070C3000F,SMM02070C3000FBS00,https://app.lcm-client.com/belimo/matching/40602-03000/ef351458b324e0850a46407492a3be47,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-03000
245,246,Resistors,Vishay,40602-03303,MMB02070C3303F,MMB02070C3303FB700,https://app.lcm-client.com/belimo/matching/40602-03303/ef351458b324e0850a46407492a3dded,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-03303
246,247,Resistors,Vishay,40602-03303,SMM02070C3303F,SMM02070C3303FBS00,https://app.lcm-client.com/belimo/matching/40602-03303/ef351458b324e0850a46407492a3e67a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-03303
247,248,Resistors,Vishay,40602-04700,MMB02070C4700F,MMB02070C4700FB700,https://app.lcm-client.com/belimo/matching/40602-04700/ef351458b324e0850a46407492a51eab,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04700
248,249,Resistors,Vishay,40602-04700,SMM02070C4700F,SMM02070C4700FBP00,https://app.lcm-client.com/belimo/matching/40602-04700/ef351458b324e0850a46407492a52341,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04700
249,250,Resistors,Vishay,40617-01108,MMA02040C1108F,MMA02040C1108FB000,https://app.lcm-client.com/belimo/matching/40617-01108/ef351458b324e0850a46407492bb453c,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01108
250,251,Resistors,Vishay,40617-02002,SMM02040C2002F,SMM02040C2002FB000,https://app.lcm-client.com/belimo/matching/40617-02002/ef351458b324e0850a46407492bed203,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02002
251,252,Resistors,Vishay,40617-02008,MMA02040C2008F,MMA02040C2008FB000,https://app.lcm-client.com/belimo/matching/40617-02008/ef351458b324e0850a46407492bf3690,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02008
252,253,Resistors,Vishay,40617-02008,SMM02040C2008F,SMM02040C2008FB000,https://app.lcm-client.com/belimo/matching/40617-02008/ef351458b324e0850a46407492bf3890,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02008
253,254,Resistors,Vishay,40617-02201,MMA02040C2001F,MMA02040C2001FB000,https://app.lcm-client.com/belimo/matching/40617-02201/ef351458b324e0850a46407492bfa0e4,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02201
254,255,Resistors,Vishay,40617-02201,SMM02040C2201F,SMM02040C2201FB000,https://app.lcm-client.com/belimo/matching/40617-02201/ef351458b324e0850a46407492bfaa90,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02201
255,256,Resistors,Vishay,40617-02202,SMM02040C2202F,SMM02040C2202FB000,https://app.lcm-client.com/belimo/matching/40617-02202/ef351458b324e0850a46407492c02755,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02202
256,257,Resistors,Vishay,40617-02402,MMA02040C2402F,MMA02040C2402FB000,https://app.lcm-client.com/belimo/matching/40617-02402/ef351458b324e0850a46407492c086bf,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02402
257,258,Resistors,Vishay,40617-02402,SMM02040C2402F,SMM02040C2402FB000,https://app.lcm-client.com/belimo/matching/40617-02402/ef351458b324e0850a46407492c09313,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02402
258,259,Resistors,Vishay,40617-02408,MMA02040C2408F,MMA02040C2408FB000,https://app.lcm-client.com/belimo/matching/40617-02408/ef351458b324e0850a46407492c0cc99,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02408
259,260,Resistors,Vishay,40862,MBB02070C2203F,MBB02070C2203FRP00,https://app.lcm-client.com/belimo/matching/40862/ef351458b324e0850a46407492c74003,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40862
260,261,Resistors,Vishay,40898,MRS25000C1102F,MRS25000C1102FRP00,https://app.lcm-client.com/belimo/matching/40898/ef351458b324e0850a46407492c879f0,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40898
261,262,Resistors,Vishay,40901,MBB02070C4992F,MBB02070C4992FRP00,https://app.lcm-client.com/belimo/matching/40901/ef351458b324e0850a46407492c8980e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40901
262,263,Resistors,Vishay,40901,MRS25000C4992F,MRS25000C4992FRP00,https://app.lcm-client.com/belimo/matching/40901/ef351458b324e0850a46407492c8a5f3,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40901
263,264,Resistors,Vishay,40913,MBB02070C2201F,MBB02070C2201FRP00,https://app.lcm-client.com/belimo/matching/40913/ef351458b324e0850a46407492c8cd11,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40913
264,265,Resistors,Vishay,40913,MRS25000C2201F,MRS25000C2201FRP00,https://app.lcm-client.com/belimo/matching/40913/ef351458b324e0850a46407492c8ced5,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40913
265,266,Resistors,Vishay,40915,MRS25000C6802F,MRS25000C6802FRP00,https://app.lcm-client.com/belimo/matching/40915/ef351458b324e0850a46407492c8f08b,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40915
266,267,Resistors,Vishay,40919,MRS25000C8201F,MRS25000C8201FRP00,https://app.lcm-client.com/belimo/matching/40919/ef351458b324e0850a46407492c91498,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40919
267,268,Resistors,Vishay,40924,MBB02070C1002F,MBB02070C1002FRP00,https://app.lcm-client.com/belimo/matching/40924/ef351458b324e0850a46407492c95e69,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40924
268,269,Resistors,Vishay,40924,MRS25000C1002F,MRS25000C1002FRP00,https://app.lcm-client.com/belimo/matching/40924/ef351458b324e0850a46407492c9667f,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40924
269,270,Resistors,Vishay,41861-01003,MCS04020D1003B,MCS04020D1003BE500,https://app.lcm-client.com/belimo/matching/41861-01003/ef351458b324e0850a46407492ccbe77,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/41861-01003
270,271,Resistors,Vishay,47012-03830,MRS25000C3830F,MRS25000C3830FRP00,https://app.lcm-client.com/belimo/matching/47012-03830/ef351458b324e0850a46407492d6f482,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-03830
271,272,Resistors,Vishay,47012-04531,MRS25000C4531F,MRS25000C4531FRP00,https://app.lcm-client.com/belimo/matching/47012-04531/ef351458b324e0850a46407492d71357,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-04531
272,273,Resistors,Vishay,47012-06192,MBB02070C6192F,MBB02070C6192FRP00,https://app.lcm-client.com/belimo/matching/47012-06192/ef351458b324e0850a46407492d72930,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47012-06192
273,274,Resistors,Vishay,47012-06192,MRS25000C6192F,MRS25000C6192FRP00,https://app.lcm-client.com/belimo/matching/47012-06192/ef351458b324e0850a46407492d735ec,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-06192
274,275,Resistors,Vishay,47013,MBB02070C5600F,MBB02070C5600FRP00,https://app.lcm-client.com/belimo/matching/47013/ef351458b324e0850a46407492d77c2d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47013
275,276,Resistors,Vishay,47016,MBB02070C2102F,MBB02070C2102FRP00,https://app.lcm-client.com/belimo/matching/47016/ef351458b324e0850a46407492d79a35,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47016
276,277,Resistors,Vishay,47017,MBB02070C2802F,MBB02070C2802FRP00,https://app.lcm-client.com/belimo/matching/47017/ef351458b324e0850a46407492d7bc7e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47017
277,278,Resistors,Vishay,47030,MBB02070C1004F,MBB02070C1004FRP00,https://app.lcm-client.com/belimo/matching/47030/ef351458b324e0850a46407492d7ea45,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47030
278,279,Resistors,Vishay,47035,MBB02070C1802F,MBB02070C1802FRP00,https://app.lcm-client.com/belimo/matching/47035/ef351458b324e0850a46407492d82ea5,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47035
279,280,Resistors,Vishay,47355-01208,MRS25000C1208F,MRS25000C1208FRP00,https://app.lcm-client.com/belimo/matching/47355-01208/a57dd45b8b8bfbbc6b72118464fc8178,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01208
280,281,Resistors,Vishay,47355-01209,MBB02070C1209F,MBB02070C1209FRP00,https://app.lcm-client.com/belimo/matching/47355-01209/a57dd45b8b8bfbbc6b72118464fca02d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01209
281,282,Resistors,Vishay,47355-01209,MRS25000C1209F,MRS25000C1209FRP00,https://app.lcm-client.com/belimo/matching/47355-01209/a57dd45b8b8bfbbc6b72118464fcacd1,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01209
282,283,Resistors,Vishay,40617-01001,MMA02040C1001F,MMA02040C1001FB000,https://app.lcm-client.com/belimo/matching/40617-01001/c8cb570d5127ae96aaae8eee66425d73,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01001
283,284,Resistors,Vishay,40617-01001,SMM02040C1001F,SMM02040C1001FB000,https://app.lcm-client.com/belimo/matching/40617-01001/c8cb570d5127ae96aaae8eee664273bd,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01001
284,285,Resistors,Vishay,40617-04701,MMA02040C4701F,MMA02040C4701FB000,https://app.lcm-client.com/belimo/matching/40617-04701/c8cb570d5127ae96aaae8eee66480626,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04701
285,286,Resistors,Vishay,40617-04701,SMM02040C4701F,SMM02040C4701FB000,https://app.lcm-client.com/belimo/matching/40617-04701/c8cb570d5127ae96aaae8eee66480c80,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04701
286,287,Resistors,Vishay,40617-04708,MMA02040C4708F,MMA02040C4708FB000,https://app.lcm-client.com/belimo/matching/40617-04708/c8cb570d5127ae96aaae8eee66486f7f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04708
287,288,Resistors,Vishay,40617-04708,SMM02040C4708F,SMM02040C4708FB000,https://app.lcm-client.com/belimo/matching/40617-04708/c8cb570d5127ae96aaae8eee6648785d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04708
288,289,Resistors,Vishay,40617-04992,MMA02040C4992F,MMA02040C4992FB000,https://app.lcm-client.com/belimo/matching/40617-04992/c8cb570d5127ae96aaae8eee6648d911,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04992
289,290,Resistors,Vishay,40602-04701,MMB02070C4701F,MMB02070C4701FB700,https://app.lcm-client.com/belimo/matching/40602-04701/ef351458b324e0850a46407492a55a67,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04701
290,291,Resistors,Vishay,40602-09100,SMM02070C9100F,SMM02070C9100FBS00,https://app.lcm-client.com/belimo/matching/40602-09100/ef351458b324e0850a46407492a7a870,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-09100
291,292,Resistors,Vishay,40617-01002,MMA02040C1002F,MMA02040C1002FB000,https://app.lcm-client.com/belimo/matching/40617-01002/ef351458b324e0850a46407492b97ffb,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01002
292,293,Resistors,Vishay,40617-01002,SMM02040C1002F,SMM02040C1002FB000,https://app.lcm-client.com/belimo/matching/40617-01002/ef351458b324e0850a46407492b98f3c,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01002
293,294,Resistors,Vishay,40617-01003,MMA02040C1003F,MMA02040C1003FB000,https://app.lcm-client.com/belimo/matching/40617-01003/ef351458b324e0850a46407492b9d7bd,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01003
294,295,Resistors,Vishay,40617-01003,SMM02040C1003F,SMM02040C1003FB000,https://app.lcm-client.com/belimo/matching/40617-01003/ef351458b324e0850a46407492b9e217,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01003
295,296,Resistors,Vishay,40617-01008,MMA02040C1008F,MMA02040C1008FB000,https://app.lcm-client.com/belimo/matching/40617-01008/ef351458b324e0850a46407492ba4463,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01008
296,297,Resistors,Vishay,40617-01008,SMM02040C1008F,SMM02040C1008FB000,https://app.lcm-client.com/belimo/matching/40617-01008/ef351458b324e0850a46407492ba493f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01008
297,298,Resistors,Vishay,40617-01009,MMA02040C1009F,MMA02040C1009FB000,https://app.lcm-client.com/belimo/matching/40617-01009/ef351458b324e0850a46407492baaa84,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01009
298,299,Resistors,Vishay,40617-01009,SMM02040C1009F,SMM02040C1009FB000,https://app.lcm-client.com/belimo/matching/40617-01009/ef351458b324e0850a46407492bab791,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01009
299,300,Resistors,Vishay,40926,MBB02070C8202F,MBB02070C8202FRP00,https://app.lcm-client.com/belimo/matching/40926/ef351458b324e0850a46407492c97f9f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40926
300,301,Resistors,Vishay,41749-06800,CMB02070X6800G,CMB02070X6800GB700,https://app.lcm-client.com/belimo/matching/41749-06800/ef351458b324e0850a46407492cb3c37,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/41749-06800
301,302,Resistors,Vishay,41770-02401,CRCW12182K40FK,CRCW12182K40FKEK,https://app.lcm-client.com/belimo/matching/41770-02401/ef351458b324e0850a46407492cb4b4c,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41770-02401
302,303,Resistors,Vishay,41770-02401,RCL12182K40FK,RCL12182K40FKEK,https://app.lcm-client.com/belimo/matching/41770-02401/ef351458b324e0850a46407492cb5a01,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41770-02401
303,304,Resistors,Vishay,41770-02709,CRCW121827R0FK,CRCW121827R0FKEK,https://app.lcm-client.com/belimo/matching/41770-02709/ef351458b324e0850a46407492cb724c,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41770-02709
304,305,Resistors,Vishay,41770-02709,RCL121827R0FK,RCL121827R0FKEK,https://app.lcm-client.com/belimo/matching/41770-02709/ef351458b324e0850a46407492cb7c46,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41770-02709
305,306,Resistors,Vishay,41770-09100,CRCW1218910RFK,CRCW1218910RFKEK,https://app.lcm-client.com/belimo/matching/41770-09100/ef351458b324e0850a46407492cb859c,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41770-09100
306,307,Resistors,Vishay,41770-09100,RCL1218910RFK,RCL1218910RFKEK,https://app.lcm-client.com/belimo/matching/41770-09100/ef351458b324e0850a46407492cb8df7,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41770-09100
307,308,Resistors,Vishay,41807-08208,CRCW25128R20JN,CRCW25128R20JNEG,https://app.lcm-client.com/belimo/matching/41807-08208/ef351458b324e0850a46407492cc6d55,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41807-08208
308,309,Resistors,Vishay,41857-04700,CMA02040X4700G,CMA02040X4700GB300,https://app.lcm-client.com/belimo/matching/41857-04700/ef351458b324e0850a46407492cc8de1,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/41857-04700
309,310,Resistors,Vishay,40550,MBB0207IC1203F,MBB0207IC1203FRP00,https://app.lcm-client.com/belimo/matching/40550/ef351458b324e0850a464074929fa8a6,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40550
310,311,Resistors,Vishay,40550,MRS25000C1203F,MRS25000C1203FRP00,https://app.lcm-client.com/belimo/matching/40550/ef351458b324e0850a464074929faa94,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40550
311,312,Resistors,Vishay,40602-01001,MMB02070C1001F,MMB02070C1001FB700,https://app.lcm-client.com/belimo/matching/40602-01001/ef351458b324e0850a464074929fd84b,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01001
312,313,Resistors,Vishay,40602-01001,SMM02070C1001F,SMM02070C1001FBS00,https://app.lcm-client.com/belimo/matching/40602-01001/ef351458b324e0850a464074929fe654,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01001
313,314,Resistors,Vishay,40602-01002,MMB02070C1002F,MMB02070C1002FB700,https://app.lcm-client.com/belimo/matching/40602-01002/ef351458b324e0850a46407492a00ad0,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01002
314,315,Resistors,Vishay,40602-01002,SMM02070C1002F,SMM02070C1002FBS00,https://app.lcm-client.com/belimo/matching/40602-01002/ef351458b324e0850a46407492a00ede,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01002
315,316,Resistors,Vishay,40602-01004,MMB02070C1004F,MMB02070C1004FB700,https://app.lcm-client.com/belimo/matching/40602-01004/ef351458b324e0850a46407492a03473,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01004
316,317,Resistors,Vishay,40602-01004,SMM02070C1004F,SMM02070C1004FBS00,https://app.lcm-client.com/belimo/matching/40602-01004/ef351458b324e0850a46407492a03d9c,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01004
317,318,Resistors,Vishay,40861,MBB02070C2202F,MBB02070C2202FRP00,https://app.lcm-client.com/belimo/matching/40861/ef351458b324e0850a46407492c733f0,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40861
318,319,Resistors,Vishay,40861,MRS25000C2202F,MRS25000C2202FRP00,https://app.lcm-client.com/belimo/matching/40861/ef351458b324e0850a46407492c73735,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40861
319,320,Resistors,Vishay,47038,MBB02070C1103F,MBB02070C1103FRP00,https://app.lcm-client.com/belimo/matching/47038/ef351458b324e0850a46407492d84967,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47038
320,321,Resistors,Vishay,47355-05762,MRS25000C5762F,MRS25000C5762FRP00,https://app.lcm-client.com/belimo/matching/47355-05762/ef351458b324e0850a46407492dceb65,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-05762
321,322,Resistors,Vishay,47355-07503,MBB02070C7503F,MBB02070C7503FRP00,https://app.lcm-client.com/belimo/matching/47355-07503/ef351458b324e0850a46407492dd0a2c,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-07503
322,323,Resistors,Vishay,47355-07503,MRS25000C7503F,MRS25000C7503FRP00,https://app.lcm-client.com/belimo/matching/47355-07503/ef351458b324e0850a46407492dd1062,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-07503
323,324,Resistors,Vishay,47355-09102,MBB02070C9102F,MBB02070C9102FRP00,https://app.lcm-client.com/belimo/matching/47355-09102/ef351458b324e0850a46407492dd3bb8,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-09102
324,325,Resistors,Vishay,47355-09102,MRS25000C9102F,MRS25000C9102FRP00,https://app.lcm-client.com/belimo/matching/47355-09102/ef351458b324e0850a46407492dd4037,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-09102
325,326,Resistors,Vishay,47355-42200,MBB02070C2200F,MBB02070C2200FRP00,https://app.lcm-client.com/belimo/matching/47355-42200/ef351458b324e0850a46407492dd65ba,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-42200
326,327,Resistors,Vishay,47355-42200,MRS25000C2200F,MRS25000C2200FRP00,https://app.lcm-client.com/belimo/matching/47355-42200/ef351458b324e0850a46407492dd696b,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-42200
327,328,Resistors,Vishay,40617-02408,SMM02040C2408F,SMM02040C2408FB000,https://app.lcm-client.com/belimo/matching/40617-02408/ef351458b324e0850a46407492c0d2b0,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02408
328,329,Resistors,Vishay,40852,MBB02070C4702F,MBB02070C4702FRP00,https://app.lcm-client.com/belimo/matching/40852/ef351458b324e0850a46407492c6d60f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40852
329,330,Resistors,Vishay,40852,MRS25000C4702F,MRS25000C4702FRP00,https://app.lcm-client.com/belimo/matching/40852/ef351458b324e0850a46407492c6e1c7,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40852
330,331,Resistors,Vishay,40853,MBB02070C5902F,MBB02070C5902FRP00,https://app.lcm-client.com/belimo/matching/40853/ef351458b324e0850a46407492c703d9,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40853
331,332,Resistors,Vishay,40853,MRS25000C5902F,MRS25000C5902FRP00,https://app.lcm-client.com/belimo/matching/40853/ef351458b324e0850a46407492c70733,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40853
332,333,Resistors,Vishay,40860,MBB02070C3001F,MBB02070C3001FRP00,https://app.lcm-client.com/belimo/matching/40860/ef351458b324e0850a46407492c71d0c,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40860
333,334,Resistors,Vishay,40860,MRS25000C3001F,MRS25000C3001FRP00,https://app.lcm-client.com/belimo/matching/40860/ef351458b324e0850a46407492c72721,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40860
334,335,Resistors,Vishay,47355-44700,MRS25000C4700F,MRS25000C4700FRP00,https://app.lcm-client.com/belimo/matching/47355-44700/ef351458b324e0850a46407492dd925e,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-44700
335,336,Resistors,TT Electronics,40617-01204,WRM0204C1M2FI,WRM0204C-1M2FI,https://app.lcm-client.com/belimo/matching/40617-01204/a57dd45b8b8bfbbc6b72118464e1e61b,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01204
336,337,Resistors,TT Electronics,40617-01211,WRM0204C1K21FI,WRM0204C-470RFI,https://app.lcm-client.com/belimo/matching/40617-01211/a57dd45b8b8bfbbc6b72118464e2c13b,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01211
337,338,Resistors,TT Electronics,40617-01800,WRM0204C180RFI,WRM0204C180RFI,https://app.lcm-client.com/belimo/matching/40617-01800/a57dd45b8b8bfbbc6b72118464e475a3,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01800
338,339,Resistors,TT Electronics,40617-01801,WRM0204C1K8FI,WRM0204C-1K8FI,https://app.lcm-client.com/belimo/matching/40617-01801/a57dd45b8b8bfbbc6b72118464e4ef28,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01801
339,340,Resistors,TT Electronics,40617-03303,WRM0204C330KFI,WRM0204C-330KFI,https://app.lcm-client.com/belimo/matching/40617-03303/a57dd45b8b8bfbbc6b72118464e87aed,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03303
340,341,Resistors,TT Electronics,40617-04700,WRM0204C470RFI,WRM0204C-470RFI,https://app.lcm-client.com/belimo/matching/40617-04700/a57dd45b8b8bfbbc6b72118464ea09cb,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04700
341,342,Resistors,TT Electronics,40615-02002,PCF1206-R-20KB,PCF1206R-20KBT1 ,https://app.lcm-client.com/belimo/matching/40615-02002/c8cb570d5127ae96aaae8eee663f84a2,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02002
342,343,Resistors,TT Electronics,40615-02202,PCF1206-R-22KB,PCF1206R-22KBT1,https://app.lcm-client.com/belimo/matching/40615-02202/c8cb570d5127ae96aaae8eee663fadb4,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02202
343,344,Resistors,TT Electronics,40615-02372,PCF1206-R-56KB,PCF1206R-56KBT1,https://app.lcm-client.com/belimo/matching/40615-02202/c8cb570d5127ae96aaae8eee663fadb4,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02372
344,345,Resistors,TT Electronics,40615-02402,PCF1206-R-24KB,PCF1206R-24KBT1,https://app.lcm-client.com/belimo/matching/40615-02402/c8cb570d5127ae96aaae8eee664021c3,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02402
345,346,Resistors,TT Electronics,40615-02492,PCF1206-R-24K9B,PCF1206R-24K9BT1,https://app.lcm-client.com/belimo/matching/40615-02492/c8cb570d5127ae96aaae8eee66405af8,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02492
346,347,Resistors,TT Electronics,40615-02552,PCF1206-R-25K5B,PCF1206R-25K5BT1,https://app.lcm-client.com/belimo/matching/40615-02552/c8cb570d5127ae96aaae8eee664087ff,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02552
347,348,Resistors,TT Electronics,40615-02702,PCF1206-R-27KB,PCF1206R-27KBT1,https://app.lcm-client.com/belimo/matching/40615-02702/c8cb570d5127ae96aaae8eee6640c2eb,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02702
348,349,Resistors,TT Electronics,40615-03922,PCF1206-R-39K2B,PCF1206R-39K2BT1,https://app.lcm-client.com/belimo/matching/40615-03922/c8cb570d5127ae96aaae8eee6640ff82,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-03922
349,350,Resistors,TT Electronics,40615-06812,PCF1206-R-68K1B,PCF1206R-68K1BT1,https://app.lcm-client.com/belimo/matching/40615-06812/c8cb570d5127ae96aaae8eee6641618e,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-06812
350,351,Resistors,TT Electronics,40615-06982,PCF1206-R-69K8B,PCF1206R-69K8BT1,https://app.lcm-client.com/belimo/matching/40615-06982/c8cb570d5127ae96aaae8eee66419452,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-06982
351,352,Resistors,TT Electronics,40615-08201,PCF1206-R-8K2B,PCF1206R-8K2BT1,https://app.lcm-client.com/belimo/matching/40615-08201/c8cb570d5127ae96aaae8eee6641c3da,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-08201
352,353,Resistors,TT Electronics,40617-01001,WRM0204C1KFI,WRM0204C-1K0FI,https://app.lcm-client.com/belimo/matching/40617-01001/c8cb570d5127ae96aaae8eee66425552,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01001
353,354,Resistors,TT Electronics,40617-04701,WRM0204C4K7FI,WRM0204C-4K7FI,https://app.lcm-client.com/belimo/matching/40617-04701/c8cb570d5127ae96aaae8eee6647ff02,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04701
354,355,Resistors,TT Electronics,40617-04992,WRM0204C49K9FI,WRM0204C-49K9FI,https://app.lcm-client.com/belimo/matching/40617-04992/c8cb570d5127ae96aaae8eee6648bd7f,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04992
355,356,Resistors,TT Electronics,40617-05109,WRM0204C51RFI,WRM0204C-51RFI,https://app.lcm-client.com/belimo/matching/40617-05109/c8cb570d5127ae96aaae8eee664944ae,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-05109
356,357,Resistors,TT Electronics,40617-05601,WRM0204C5K6FI,WRM0204C-5K6FI,https://app.lcm-client.com/belimo/matching/40617-05601/c8cb570d5127ae96aaae8eee6649b46b,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-05601
357,358,Resistors,TT Electronics,40617-06800,WRM0204C680RFI,WRM0204C-680RFI,https://app.lcm-client.com/belimo/matching/40617-06800/c8cb570d5127ae96aaae8eee664a97c6,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06800
358,359,Resistors,TT Electronics,40617-06801,WRM0204C6K8FI,WRM0204C-6K8FI,https://app.lcm-client.com/belimo/matching/40617-06801/c8cb570d5127ae96aaae8eee664b8a2f,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06801
359,360,Resistors,TT Electronics,40617-07502,WRM0204C75KFI,WRM0204C-75KFI,https://app.lcm-client.com/belimo/matching/40617-07502/c8cb570d5127ae96aaae8eee664c65a4,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-07502
360,361,Resistors,TT Electronics,40602-01001,WRM0207HPC-1K0F,WRM0207HPC-1K0FT2,https://app.lcm-client.com/belimo/matching/40602-01001/ef351458b324e0850a464074929fc757,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01001
361,362,Resistors,TT Electronics,40602-01002,WRM0207HPC-10KF,WRM0207HPC-10KFT2,https://app.lcm-client.com/belimo/matching/40602-01002/ef351458b324e0850a46407492a0014a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01002
362,363,Resistors,TT Electronics,40602-01004,WRM0207HPC-1M0F,WRM0207HPC-1M0FT2,https://app.lcm-client.com/belimo/matching/40602-01004/ef351458b324e0850a46407492a0258e,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01004
363,364,Resistors,TT Electronics,40602-01100,WRM0207HPC-110RF,WRM0207HPC-110RFT2,https://app.lcm-client.com/belimo/matching/40602-01100/ef351458b324e0850a46407492a0d9d9,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01100
364,365,Resistors,TT Electronics,40602-01501,WRM0207HPC-1K5F,WRM0207HPC-1K5FT2,https://app.lcm-client.com/belimo/matching/40602-01501/ef351458b324e0850a46407492a118c9,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01501
365,366,Resistors,TT Electronics,40602-01503,WRM0207HPC-150KF,WRM0207HPC-150KFT2,https://app.lcm-client.com/belimo/matching/40602-01503/ef351458b324e0850a46407492a15498,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01503
366,367,Resistors,TT Electronics,40602-01801,WRM0207HPC-1K8F,WRM0207HPC-1K8FT2,https://app.lcm-client.com/belimo/matching/40602-01801/ef351458b324e0850a46407492a19513,ok,Automotive,Yes,y,Requires Update,https://app.lcm-client.com/belimo/part/40602-01801
367,368,Resistors,TT Electronics,40602-02201,WRM0207HPC-2K2F,WRM0207HPC-2K2FT2,https://app.lcm-client.com/belimo/matching/40602-02201/ef351458b324e0850a46407492a1c7a2,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02201
368,369,Resistors,TT Electronics,40602-02203,WRM0207HPC-220KF,WRM0207HPC-220KFT2,https://app.lcm-client.com/belimo/matching/40602-02203/ef351458b324e0850a46407492a208f7,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02203
369,370,Resistors,TT Electronics,40602-02401,WRM0207HPC-2K4F,WRM0207HPC-2K4FT2,https://app.lcm-client.com/belimo/matching/40602-02401/ef351458b324e0850a46407492a27710,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02401
370,371,Resistors,TT Electronics,40602-02402,WRM0207HPC-24KF,WRM0207HPC-24KFT2,https://app.lcm-client.com/belimo/matching/40602-02402/ef351458b324e0850a46407492a2b96e,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02402
371,372,Resistors,TT Electronics,40602-02403,WRM0207HPC-240KF,WRM0207HPC-240KFT2,https://app.lcm-client.com/belimo/matching/40602-02403/ef351458b324e0850a46407492a2ea6d,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02403
372,373,Resistors,TT Electronics,40602-02491,WRM0207HPC-2K49F,WRM0207HPC-2K49FT2,https://app.lcm-client.com/belimo/matching/40602-02491/ef351458b324e0850a46407492a30f58,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02491
373,374,Resistors,TT Electronics,40602-02703,WRM0207HPC-270KF,WRM0207HPC-270KFT2,https://app.lcm-client.com/belimo/matching/40602-02703/ef351458b324e0850a46407492a35ee4,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02703
374,375,Resistors,TT Electronics,40602-03000,WRM0207HPC-300RF,WRM0207HPC-300RFT2,https://app.lcm-client.com/belimo/matching/40602-03000/ef351458b324e0850a46407492a39ce1,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-03000
375,376,Resistors,TT Electronics,40602-03303,WRM0207HPC-330KF,WRM0207HPC-330KFT2,https://app.lcm-client.com/belimo/matching/40602-03303/ef351458b324e0850a46407492a3cdcf,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-03303
376,377,Resistors,TT Electronics,40602-04700,WRM0207HPC-470RF,WRM0207HPC-470RFT2,https://app.lcm-client.com/belimo/matching/40602-04700/ef351458b324e0850a46407492a51cfd,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04700
377,378,Resistors,TT Electronics,40602-04701,WRM0207HPC-4K7F,WRM0207HPC-4K7FT2,https://app.lcm-client.com/belimo/matching/40602-04701/ef351458b324e0850a46407492a54e73,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04701
378,379,Resistors,TT Electronics,40602-04702,WRM0207HPC-47KF,WRM0207HPC-47KFT2,https://app.lcm-client.com/belimo/matching/40602-04702/ef351458b324e0850a46407492a58a5c,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04702
379,380,Resistors,TT Electronics,40602-04703,WRM0207HPC-470KF,WRM0207HPC-470KFT2,https://app.lcm-client.com/belimo/matching/40602-04703/ef351458b324e0850a46407492a5b923,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04703
380,381,Resistors,TT Electronics,40602-05100,WRM0207HPC-510RF,WRM0207HPC-510RFT2,https://app.lcm-client.com/belimo/matching/40602-05100/ef351458b324e0850a46407492a6084d,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05100
381,382,Resistors,TT Electronics,40602-05603,WRM0207HPC-560KF,WRM0207HPC-560KFT2,https://app.lcm-client.com/belimo/matching/40602-05603/ef351458b324e0850a46407492a64c72,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05603
382,383,Resistors,TT Electronics,40602-06209,WRM0207HPC-62RF,WRM0207HPC-62RFT2,https://app.lcm-client.com/belimo/matching/40602-06209/ef351458b324e0850a46407492a68b65,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-06209
383,384,Resistors,TT Electronics,40602-07502,WRM0207HPC-75KF,WRM0207HPC-75KFT2,https://app.lcm-client.com/belimo/matching/40602-07502/ef351458b324e0850a46407492a6d6ab,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-07502
384,385,Resistors,TT Electronics,40602-08063,WRM0207HPC-806KF,WRM0207HPC-806KFT2,https://app.lcm-client.com/belimo/matching/40602-08063/ef351458b324e0850a46407492a71c92,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08063
385,386,Resistors,TT Electronics,40602-08202,WRM0207HPC-82KF,WRM0207HPC-82KFT2,https://app.lcm-client.com/belimo/matching/40602-08202/ef351458b324e0850a46407492a75ccf,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08202
386,387,Resistors,TT Electronics,40602-09100,WRM0207HPC-910RF,WRM0207HPC-910RFT2,https://app.lcm-client.com/belimo/matching/40602-09100/ef351458b324e0850a46407492a79fec,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-09100
387,388,Resistors,TT Electronics,40615-01002,PCF1206-R-10KB,PCF1206R-10KBT1,https://app.lcm-client.com/belimo/matching/40615-01002/ef351458b324e0850a46407492b6a626,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-01002
388,389,Resistors,TT Electronics,40615-01022,PCF1206-R-10K2B,PCF1206R-10K2BT1,https://app.lcm-client.com/belimo/matching/40615-01022/ef351458b324e0850a46407492b6e25d,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-01022
389,390,Resistors,TT Electronics,40615-01213,PCF1206-R-121KB,PCF1206R-121KBT1,https://app.lcm-client.com/belimo/matching/40615-01213/ef351458b324e0850a46407492b72657,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-01213
390,391,Resistors,TT Electronics,40615-01822,PCF1206-R-18K2B,PCF1206R-18K2BT1,https://app.lcm-client.com/belimo/matching/40615-01822/ef351458b324e0850a46407492b751d0,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-01822
391,392,Resistors,TT Electronics,40617-01002,WRM0204C10KFI,WRM0204C-10KFI,https://app.lcm-client.com/belimo/matching/40617-01002/ef351458b324e0850a46407492b965cd,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01002
392,393,Resistors,TT Electronics,40617-01003,WRM0204C100KFI,WRM0204C-100KFI,https://app.lcm-client.com/belimo/matching/40617-01003/ef351458b324e0850a46407492b9d08e,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01003
393,394,Resistors,TT Electronics,40617-01108,WRM0204C1R1FI,WRM0204C-1R1FI,https://app.lcm-client.com/belimo/matching/40617-01108/ef351458b324e0850a46407492bb284b,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01108
394,395,Resistors,TT Electronics,40617-01201,WRM0204C1K2FI,WRM0204C-1K2FI,https://app.lcm-client.com/belimo/matching/40617-01201/ef351458b324e0850a46407492bb9190,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01201
395,396,Resistors,TT Electronics,40617-01202,WRM0204C12KFI,WRM0204C-12KFI,https://app.lcm-client.com/belimo/matching/40617-01202/ef351458b324e0850a46407492bbe280,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01202
396,397,Resistors,TT Electronics,40617-02002,WRM0204C20KFI,WRM0204C-20KFI,https://app.lcm-client.com/belimo/matching/40617-02002/ef351458b324e0850a46407492beb216,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02002
397,398,Resistors,TT Electronics,40617-02201,WRM0204C2K2FI,WRM0204C-2K2FI,https://app.lcm-client.com/belimo/matching/40617-02201/ef351458b324e0850a46407492bf96d3,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02201
398,399,Resistors,TT Electronics,40617-02202,WRM0204C22KFI,WRM0204C-22KFI,https://app.lcm-client.com/belimo/matching/40617-02202/ef351458b324e0850a46407492c0070f,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02202
399,400,Resistors,TT Electronics,40617-02402,WRM0204C24KFI,WRM0204C-24KFI,https://app.lcm-client.com/belimo/matching/40617-02402/ef351458b324e0850a46407492c077bb,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02402
400,401,Resistors,TT Electronics,41746-02007,LR2512-R20F,LR2512-R20FT1,https://app.lcm-client.com/belimo/matching/41746-02007/ef351458b324e0850a46407492cb1266,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41746-02007
401,402,Resistors,TT Electronics,41801-00057,LRMAP2512-R005F,LRMAP2512-R005FT4,https://app.lcm-client.com/belimo/matching/41801-00057/ef351458b324e0850a46407492cc617c,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/41801-00057
402,403,Resistors,TT Electronics,41808-01008,CHP1/8501R00J,CHP1/8501R00JLF,https://app.lcm-client.com/belimo/matching/41808-01008/ef351458b324e0850a46407492cc74b7,ok,STD,Yes,y,Obsolete,https://app.lcm-client.com/belimo/part/41808-01008
403,404,Resistors,Panasonic,41911-03001,ERJ2RKF3001,ERJ2RKF3001X,https://app.lcm-client.com/belimo/matching/41911-03001/01c0aaf7f54e36ff3a021a81ca303251,ok,Automotive,Exption,n,,
404,405,Resistors,Panasonic,41911-03301,ERJ2RKF3301,ERJ2RKF3301X,https://app.lcm-client.com/belimo/matching/41911-03301/01c0aaf7f54e36ff3a021a81ca30648f,ok,Automotive,Exption,n,,
405,406,Resistors,Panasonic,41911-05600,ERJ2RKF5600,ERJ2RKF5600X,https://app.lcm-client.com/belimo/matching/41911-05600/215374c1de05d3324b68f967dc5023c8,ok,Automotive,Exption,n,,
406,407,Resistors,Panasonic,41911-07502,ERJ2RKF7502,ERJ2RKF7502X,https://app.lcm-client.com/belimo/matching/41911-07502/215374c1de05d3324b68f967dc50b5a8,ok,Automotive,Exption,n,,
407,408,Resistors,Panasonic,41911-08203,ERJ2RKF8203,ERJ2RKF8203X,https://app.lcm-client.com/belimo/matching/41911-08203/215374c1de05d3324b68f967dc50e5fb,ok,Automotive,Exption,n,,
408,409,Resistors,Panasonic,41911-01103,ERJ2RKF1103,ERJ2RKF1103X,https://app.lcm-client.com/belimo/matching/41911-01103/46de94ed90f9f5ccd2b17e508cfa275c,ok,Automotive,Exption,n,,
409,410,Resistors,Panasonic,41911-01200,ERJ2RKF1200,ERJ2RKF1200X,https://app.lcm-client.com/belimo/matching/41911-01200/46de94ed90f9f5ccd2b17e508cfa4588,ok,Automotive,Exption,n,,
410,411,Resistors,Panasonic,41911-01302,ERJ2RKF1302,ERJ2RKF1302X,https://app.lcm-client.com/belimo/matching/41911-01302/46de94ed90f9f5ccd2b17e508cfa5fef,ok,Automotive,Exption,n,,
411,412,Resistors,Panasonic,41911-01303,ERJ2RKF1303,ERJ2RKF1303X,https://app.lcm-client.com/belimo/matching/41911-01303/46de94ed90f9f5ccd2b17e508cfa88df,ok,Automotive,Exption,n,,
412,413,Resistors,Panasonic,40613-01001,ERA6AEB102,ERA6AEB102V,https://app.lcm-client.com/belimo/matching/40613-01001/a57dd45b8b8bfbbc6b72118464d72071,ok,Automotive,Exption,n,,
413,414,Resistors,Panasonic,40613-01002,ERA6AEB103,ERA6AEB103V,https://app.lcm-client.com/belimo/matching/40613-01002/a57dd45b8b8bfbbc6b72118464d74c0c,ok,Automotive,Exption,n,,
414,415,Resistors,Panasonic,40613-01152,ERA6AEB1153,ERA6AEB1153V,https://app.lcm-client.com/belimo/matching/40613-01152/a57dd45b8b8bfbbc6b72118464d773c4,ok,Automotive,Exption,n,,
415,416,Resistors,Panasonic,40613-01271,ERA6AEB1271,ERA6AEB1271V,https://app.lcm-client.com/belimo/matching/40613-01271/a57dd45b8b8bfbbc6b72118464d7a262,ok,Automotive,Exption,n,,
416,417,Resistors,Panasonic,40613-01502,ERA6AEB1502,ERA6AEB1502V,https://app.lcm-client.com/belimo/matching/40613-01502/a57dd45b8b8bfbbc6b72118464d7ef05,ok,Automotive,Exption,n,,
417,418,Resistors,Panasonic,40613-01503,ERA6AEB1503,ERA6AEB1503V,https://app.lcm-client.com/belimo/matching/40613-01503/a57dd45b8b8bfbbc6b72118464d802b3,ok,Automotive,Exption,n,,
418,419,Resistors,Panasonic,40613-01602,ERA6AEB163,ERA6AEB163V,https://app.lcm-client.com/belimo/matching/40613-01602/a57dd45b8b8bfbbc6b72118464d8202c,ok,Automotive,Exption,n,,
419,420,Resistors,Panasonic,40613-02001,ERA6AEB2001,ERA6AEB2001V,https://app.lcm-client.com/belimo/matching/40613-02001/a57dd45b8b8bfbbc6b72118464d85572,ok,Automotive,Exption,n,,
420,421,Resistors,Panasonic,40613-02002,ERA6AEB2002,ERA6AEB2002V,https://app.lcm-client.com/belimo/matching/40613-02002/a57dd45b8b8bfbbc6b72118464d8777d,ok,Automotive,Exption,n,,
421,422,Resistors,Panasonic,40613-02432,ERA6AEB2431,ERA6AEB2431V,https://app.lcm-client.com/belimo/matching/40613-02432/a57dd45b8b8bfbbc6b72118464d8af94,ok,Automotive,Exption,n,,
422,423,Resistors,Panasonic,40613-03321,ERA6AEB3321,ERA6AEB3321V,https://app.lcm-client.com/belimo/matching/40613-03321/a57dd45b8b8bfbbc6b72118464d8e08b,ok,Automotive,Exption,n,,
423,424,Resistors,Panasonic,40613-03601,ERA6AEB362,ERA6AEB362V,https://app.lcm-client.com/belimo/matching/40613-03601/a57dd45b8b8bfbbc6b72118464d8fefd,ok,Automotive,Exption,n,,
424,425,Resistors,Panasonic,40613-04022,ERA6AEB4022,ERA6AEB4022V,https://app.lcm-client.com/belimo/matching/40613-04022/a57dd45b8b8bfbbc6b72118464da2fbb,ok,Automotive,Exption,n,,
425,426,Resistors,Panasonic,40613-06802,ERA6AEB683,ERA6AEB683V,https://app.lcm-client.com/belimo/matching/40613-06802/a57dd45b8b8bfbbc6b72118464da4c84,ok,Automotive,Exption,n,,
426,427,Resistors,Panasonic,40613-07871,ERA6AEB7871,ERA6AEB7871V,https://app.lcm-client.com/belimo/matching/40613-07871/a57dd45b8b8bfbbc6b72118464da5af6,ok,Automotive,Exption,n,,
427,428,Resistors,Panasonic,40613-09762,ERA6AEB9762,ERA6AEB9762V,https://app.lcm-client.com/belimo/matching/40613-09762/a57dd45b8b8bfbbc6b72118464da891e,ok,Automotive,Exption,n,,
428,429,Resistors,Panasonic,41911-01003,ERJ2RKF1003,ERJ2RKF1003X,https://app.lcm-client.com/belimo/matching/41911-01003/a57dd45b8b8bfbbc6b72118464f07eb4,ok,Automotive,Exption,n,,
429,430,Resistors,Panasonic,41911-01102,ERJ2RKF1102,ERJ2RKF1102X,https://app.lcm-client.com/belimo/matching/41911-01102/a57dd45b8b8bfbbc6b72118464f0d155,ok,Automotive,Exption,n,,
430,431,Resistors,Panasonic,41911-01202,ERJ2RKF1202,ERJ2RKF1202X,https://app.lcm-client.com/belimo/matching/41911-01202/a57dd45b8b8bfbbc6b72118464f1003f,ok,Automotive,Exption,n,,
431,432,Resistors,Panasonic,41911-01203,ERJ2RKF1203,ERJ2RKF1203X,https://app.lcm-client.com/belimo/matching/41911-01203/a57dd45b8b8bfbbc6b72118464f11b46,ok,Automotive,Exption,n,,
432,433,Resistors,Panasonic,41911-01402,ERJ2RKF1402,ERJ2RKF1402X,https://app.lcm-client.com/belimo/matching/41911-01402/a57dd45b8b8bfbbc6b72118464f1429e,ok,Automotive,Exption,n,,
433,434,Resistors,Panasonic,41911-01502,ERJ2RKF1502,ERJ2RKF1502X,https://app.lcm-client.com/belimo/matching/41911-01502/a57dd45b8b8bfbbc6b72118464f179f5,ok,Automotive,Exption,n,,
434,435,Resistors,Panasonic,41911-01503,ERJ2RKF1503,ERJ2RKF1503X,https://app.lcm-client.com/belimo/matching/41911-01503/a57dd45b8b8bfbbc6b72118464f1b159,ok,Automotive,Exption,n,,
435,436,Resistors,Panasonic,41911-01802,ERJ2RKF1802,ERJ2RKF1802X,https://app.lcm-client.com/belimo/matching/41911-01802/a57dd45b8b8bfbbc6b72118464f1e1f1,ok,Automotive,Exption,n,,
436,437,Resistors,Panasonic,41911-01803,ERJ2RKF1803,ERJ2RKF1803X,https://app.lcm-client.com/belimo/matching/41911-01803/a57dd45b8b8bfbbc6b72118464f210cd,ok,Automotive,Exption,n,,
437,438,Resistors,Panasonic,41911-02003,ERJ2RKF2003,ERJ2RKF2003X,https://app.lcm-client.com/belimo/matching/41911-02003/a57dd45b8b8bfbbc6b72118464f2425a,ok,Automotive,Exption,n,,
438,439,Resistors,Panasonic,41911-02200,ERJ2RKF2200,ERJ2RKF2200X,https://app.lcm-client.com/belimo/matching/41911-02200/a57dd45b8b8bfbbc6b72118464f2631d,ok,Automotive,Exption,n,,
439,440,Resistors,Panasonic,41911-02201,ERJ2RKF2201,ERJ2RKF2201X,https://app.lcm-client.com/belimo/matching/41911-02201/a57dd45b8b8bfbbc6b72118464f28fbc,ok,Automotive,Exption,n,,
440,441,Resistors,Panasonic,41911-02202,ERJ2RKF2202,ERJ2RKF2202X,https://app.lcm-client.com/belimo/matching/41911-02202/a57dd45b8b8bfbbc6b72118464f2ad6b,ok,Automotive,Exption,n,,
441,442,Resistors,Panasonic,41911-02203,ERJ2RKF2203,ERJ2RKF2203X,https://app.lcm-client.com/belimo/matching/41911-02203/a57dd45b8b8bfbbc6b72118464f2d9da,ok,Automotive,Exption,n,,
442,443,Resistors,Panasonic,47690-00001,ERJ-6ENF1003V,ERJ6ENF1003V,https://app.lcm-client.com/belimo/matching/47690-00001/a57dd45b8b8bfbbc6b72118464fe67b5,ok,Automotive,Exption,n,,
443,444,Resistors,Panasonic,47692-00001,ERJ-6ENF1783V,ERJ6ENF1783V,https://app.lcm-client.com/belimo/matching/47692-00001/a57dd45b8b8bfbbc6b72118464fe776d,ok,Automotive,Exption,n,,
444,445,Resistors,Panasonic,47694-00001,ERJ-6ENF4753V,ERJ6ENF4753V,https://app.lcm-client.com/belimo/matching/47694-00001/a57dd45b8b8bfbbc6b72118464fe8343,ok,Automotive,Exption,n,,
445,446,Resistors,Panasonic,47695-00001,ERJ-6ENF6493V,ERJ6ENF6493V,https://app.lcm-client.com/belimo/matching/47695-00001/a57dd45b8b8bfbbc6b72118464fe92ca,ok,Automotive,Exption,n,,
446,447,Resistors,Panasonic,47700-00001,ERJ-6ENF1000V,ERJ6ENF1000V,https://app.lcm-client.com/belimo/matching/47700-00001/a57dd45b8b8bfbbc6b72118464fee6c1,ok,Automotive,Exption,n,,
447,448,Resistors,Panasonic,47703-00001,ERJ-6ENF9090V,ERJ6ENF9090V,https://app.lcm-client.com/belimo/matching/47703-00001/a57dd45b8b8bfbbc6b72118464ff302b,ok,Automotive,Exption,n,,
448,449,Resistors,Panasonic,47704-00001,ERJ-8ENF1001V,ERJ8ENF1001V,https://app.lcm-client.com/belimo/matching/47704-00001/a57dd45b8b8bfbbc6b72118464ff3d4c,ok,Automotive,Exption,y,NRND,
449,450,Resistors,Panasonic,47716-00001,ERJ-8ENF62R0V,ERJ8ENF62R0V,https://app.lcm-client.com/belimo/matching/47716-00001/a57dd45b8b8bfbbc6b72118464ffbddb,ok,Automotive,Exption,y,NRND,
450,451,Resistors,Panasonic,47720-00001,ERJ-8ENF4990V,ERJ8ENF4990V,https://app.lcm-client.com/belimo/matching/47720-00001/a57dd45b8b8bfbbc6b72118464ffd9f2,ok,Automotive,Exption,y,NRND,
451,452,Resistors,Panasonic,41911-02400,ERJ2RKF2400,ERJ2RKF2400x,https://app.lcm-client.com/belimo/matching/41911-02400/c8cb570d5127ae96aaae8eee6653b5ee,ok,Automotive,Exption,n,,
452,453,Resistors,Panasonic,41911-02402,ERJ2RKF2402,ERJ2RKF2402X,https://app.lcm-client.com/belimo/matching/41911-02402/c8cb570d5127ae96aaae8eee6653e56f,ok,Automotive,Exption,n,,
453,454,Resistors,Panasonic,41911-02701,ERJ2RKF2701,ERJ2RKF2701X,https://app.lcm-client.com/belimo/matching/41911-02701/c8cb570d5127ae96aaae8eee66541a81,ok,Automotive,Exption,n,,
454,455,Resistors,Panasonic,41911-02702,ERJ2RKF2702,ERJ2RKF2702X,https://app.lcm-client.com/belimo/matching/41911-02702/c8cb570d5127ae96aaae8eee66543ebe,ok,Automotive,Exption,n,,
455,456,Resistors,Panasonic,41911-03002,ERJ2RKF3002,ERJ2RKF3002X,https://app.lcm-client.com/belimo/matching/41911-03002/c8cb570d5127ae96aaae8eee6654c2de,ok,Automotive,Exption,n,,
456,457,Resistors,Panasonic,41911-03003,ERJ2RKF3003,ERJ2RKF3003X,https://app.lcm-client.com/belimo/matching/41911-03003/c8cb570d5127ae96aaae8eee6655059a,ok,Automotive,Exption,n,,
457,458,Resistors,Panasonic,41911-03300,ERJ2RKF3300,ERJ2RKF3300X,https://app.lcm-client.com/belimo/matching/41911-03300/c8cb570d5127ae96aaae8eee66553a8c,ok,Automotive,Exption,n,,
458,459,Resistors,Panasonic,41911-03302,ERJ2RKF3302,ERJ2RKF3302X,https://app.lcm-client.com/belimo/matching/41911-03302/c8cb570d5127ae96aaae8eee66555ae8,ok,Automotive,Exption,n,,
459,460,Resistors,Panasonic,41911-03303,ERJ2RKF3303,ERJ2RKF3303X,https://app.lcm-client.com/belimo/matching/41911-03303/c8cb570d5127ae96aaae8eee665598e9,ok,Automotive,Exption,n,,
460,461,Resistors,Panasonic,41911-03900,ERJ2RKF3900,ERJ2RKF3900X,https://app.lcm-client.com/belimo/matching/41911-03900/c8cb570d5127ae96aaae8eee6655be39,ok,Automotive,Exption,n,,
461,462,Resistors,Panasonic,41911-04302,ERJ2RKF4302,ERJ2RKF4302X,https://app.lcm-client.com/belimo/matching/41911-04302/c8cb570d5127ae96aaae8eee66560497,ok,Automotive,Exption,n,,
462,463,Resistors,Panasonic,41911-04701,ERJ2RKF4703,ERJ2RKF4703X,https://app.lcm-client.com/belimo/matching/41911-04701/c8cb570d5127ae96aaae8eee66567b38,ok,Automotive,Exption,n,,
463,464,Resistors,Panasonic,41911-08872,ERJ2RKF8872,ERJ2RKF8872X,https://app.lcm-client.com/belimo/matching/41911-08872/c8cb570d5127ae96aaae8eee6658f0ba,ok,Automotive,Exption,n,,
464,465,Resistors,Panasonic,42175-03602,ERJ2RKF3602,ERJ2RKF3602X,https://app.lcm-client.com/belimo/matching/42175-03602/c8cb570d5127ae96aaae8eee6659b0b1,ok,Automotive,Exption,n,,
465,466,Resistors,Panasonic,42175-08201,ERJ2RKF8201,ERJ2RKF8201X,https://app.lcm-client.com/belimo/matching/42175-08201/c8cb570d5127ae96aaae8eee6659c7f1,ok,Automotive,Exption,n,,
466,467,Resistors,Panasonic,40412-02701,ERJ-U03D2701V,ERJU03D2701V,https://app.lcm-client.com/belimo/matching/40412-02701/ef351458b324e0850a464074929e2bee,ok,Automotive,Exption,n,,
467,468,Resistors,Panasonic,40412-02701,ERJ-U3RD2701V,ERJU3RD2701V,https://app.lcm-client.com/belimo/matching/40412-02701/ef351458b324e0850a464074929e3613,ok,Automotive,Exption,n,,
468,469,Resistors,Panasonic,41861-01003,ERA2AEB104,ERA2AEB104X,https://app.lcm-client.com/belimo/matching/41861-01003/ef351458b324e0850a46407492ccb156,ok,Automotive,Exption,n,,
469,470,Resistors,Panasonic,41861-02001,ERA2AEB202,ERA2AEB202X,https://app.lcm-client.com/belimo/matching/41861-02001/ef351458b324e0850a46407492ccefa4,ok,Automotive,Exption,n,,
470,471,Resistors,Panasonic,41861-02702,ERA2AEB273,ERA2AEB273X,https://app.lcm-client.com/belimo/matching/41861-02702/ef351458b324e0850a46407492cd4c96,ok,Automotive,Exption,n,,
471,472,Resistors,Panasonic,41861-04702,ERJ2RKF4702,ERJ2RKF4702X,https://app.lcm-client.com/belimo/matching/41861-04702/ef351458b324e0850a46407492cd780d,ok,Automotive,Exption,n,,
472,473,Resistors,Panasonic,41861-06802,ERA2AEB683,ERA2AEB683X,https://app.lcm-client.com/belimo/matching/41861-06802/ef351458b324e0850a46407492cd95c0,ok,Automotive,Exption,n,,
473,474,Resistors,Panasonic,41911-01001,ERJ2RKF1001,ERJ2RKF1001X,https://app.lcm-client.com/belimo/matching/41911-01001/ef351458b324e0850a46407492ced498,ok,Automotive,Exption,n,,
474,475,Resistors,Panasonic,41911-05102,ERJ2RKF5102,ERJ2RKF5102X,https://app.lcm-client.com/belimo/matching/41911-05102/ef351458b324e0850a46407492d19988,ok,Automotive,Exption,n,,
475,476,Resistors,Panasonic,41911-05103,ERJ2RKF5103,ERJ2RKF5103X,https://app.lcm-client.com/belimo/matching/41911-05103/ef351458b324e0850a46407492d1cc89,ok,Automotive,Exption,n,,
476,477,Resistors,Panasonic,41911-05603,ERJ2RKF5603,ERJ2RKF5603X,https://app.lcm-client.com/belimo/matching/41911-05603/ef351458b324e0850a46407492d223fb,ok,Automotive,Exption,n,,
477,478,Resistors,Panasonic,41911-06201,ERJ2RKF6201,ERJ2RKF6201X,https://app.lcm-client.com/belimo/matching/41911-06201/ef351458b324e0850a46407492d2c3d1,ok,Automotive,Exption,n,,
478,479,Resistors,Panasonic,41911-06202,ERJ2RKF6202,ERJ2RKF6202X,https://app.lcm-client.com/belimo/matching/41911-06202/ef351458b324e0850a46407492d2fe25,ok,Automotive,Exption,n,,
479,480,Resistors,Panasonic,41911-06802,ERJ2RKF6802,ERJ2RKF6802X,https://app.lcm-client.com/belimo/matching/41911-06802/ef351458b324e0850a46407492d330e8,ok,Automotive,Exption,n,,
480,481,Resistors,Panasonic,41911-06803,ERJ2RKF6803,ERJ2RKF6803X,https://app.lcm-client.com/belimo/matching/41911-06803/ef351458b324e0850a46407492d3643a,ok,Automotive,Exption,n,,
481,482,Resistors,Panasonic,41911-06809,ERJ2RKF68R0,ERJ2RKF68R0X,https://app.lcm-client.com/belimo/matching/41911-06809/ef351458b324e0850a46407492d3ab42,ok,Automotive,Exption,n,,
482,483,Resistors,Panasonic,47673-00001,ERJ-6ENF1151V,ERJ6ENF1151V,https://app.lcm-client.com/belimo/matching/47673-00001/ef351458b324e0850a46407492de2ab2,ok,Automotive,Exption,n,,
483,484,Resistors,Panasonic,47678-00001,ERJ-6ENF4301V,ERJ6ENF4301V,https://app.lcm-client.com/belimo/matching/47678-00001/ef351458b324e0850a46407492de700b,ok,Automotive,Exption,n,,
484,485,Resistors,Panasonic,47682-00001,ERJ-6ENF1912V,ERJ6ENF1912V,https://app.lcm-client.com/belimo/matching/47682-00001/ef351458b324e0850a46407492decfd2,ok,Automotive,Exption,n,,
485,486,Resistors,TDK,40138,B57620C5102J,B57620C5102J062,https://app.lcm-client.com/belimo/matching/40138/ef351458b324e0850a464074929dd12c,ok,STD,Yes,y,Requires Update,https://app.lcm-client.com/belimo/part/40138

@ -0,0 +1,487 @@
,Pos,Category,Manufacturer,CPN,MPN,MPN_Matched,Link,Status,State,ROHS,report_belimo,Comment,CPN_Link
0,1,Resistors,Vishay,41749-01509,CMB02070X1509,CMB02070X1509JB200 ,https://app.lcm-client.com/belimo/matching/41749-01509/46de94ed90f9f5ccd2b17e508cf7765a,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/41749-01509
1,2,Resistors,Vishay,40613-01001,MCU08050D1001B,MCU08050D1001BP500,https://app.lcm-client.com/belimo/matching/40613-01001/a57dd45b8b8bfbbc6b72118464d732a4,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01001
2,3,Resistors,Vishay,40613-01002,MCU08050D1002B,MCU08050D1002BP500,https://app.lcm-client.com/belimo/matching/40613-01002/a57dd45b8b8bfbbc6b72118464d75801,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01002
3,4,Resistors,Vishay,40613-01152,MCU08050D1152B,MCU08050D1152BP500,https://app.lcm-client.com/belimo/matching/40613-01152/a57dd45b8b8bfbbc6b72118464d7859d,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01152
4,5,Resistors,Vishay,40613-01271,MCU08050D1271B,MCU08050D1271BP500,https://app.lcm-client.com/belimo/matching/40613-01271/a57dd45b8b8bfbbc6b72118464d7c5d9,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01271
5,6,Resistors,Vishay,40613-01300,MCU08050D1300B,MCU08050D1300BP500,https://app.lcm-client.com/belimo/matching/40613-01300/a57dd45b8b8bfbbc6b72118464d7dde1,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01300
6,7,Resistors,Vishay,40613-01502,MCU08050D1502B,MCU08050D1502BP500,https://app.lcm-client.com/belimo/matching/40613-01502/a57dd45b8b8bfbbc6b72118464d7f9ab,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01502
7,8,Resistors,Vishay,40613-01503,MCU08050D1503B,MCU08050D1503BP500,https://app.lcm-client.com/belimo/matching/40613-01503/a57dd45b8b8bfbbc6b72118464d80785,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01503
8,9,Resistors,Vishay,40613-01602,MCU08050D1602B,MCU08050D1602BP500,https://app.lcm-client.com/belimo/matching/40613-01602/a57dd45b8b8bfbbc6b72118464d82cc5,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01602
9,10,Resistors,Vishay,40613-02001,MCU08050D2001B,MCU08050D2001BP500,https://app.lcm-client.com/belimo/matching/40613-02001/a57dd45b8b8bfbbc6b72118464d863d6,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-02001
10,11,Resistors,Vishay,40617-01208,SMM02040C1208F,SMM02040C1208FB300,https://app.lcm-client.com/belimo/matching/40617-01208/a57dd45b8b8bfbbc6b72118464e27bef,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01208
11,12,Resistors,Vishay,40617-01208,MMA02040C1211F,MMA02040C1211FB300,https://app.lcm-client.com/belimo/matching/40617-01211/a57dd45b8b8bfbbc6b72118464e2d494,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01208
12,13,Resistors,Vishay, 40617-01211,SMM02040C1211F,SMM02040C1211FB300,https://app.lcm-client.com/belimo/matching/40617-01211/a57dd45b8b8bfbbc6b72118464e2d5e6,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/ 40617-01211
13,14,Resistors,Vishay,40617-01211,MMA02040C1308F,MMA02040C1308FB300,https://app.lcm-client.com/belimo/matching/40617-01308/a57dd45b8b8bfbbc6b72118464e330ad,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01211
14,15,Resistors,Vishay,40617-01308,SMM02040C1308F,SMM02040C1308FB300,https://app.lcm-client.com/belimo/matching/40617-01308/a57dd45b8b8bfbbc6b72118464e3356a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01308
15,16,Resistors,Vishay,40617-01308,MMA02040C1508F,MMA02040C1508FB300,https://app.lcm-client.com/belimo/matching/40617-01508/a57dd45b8b8bfbbc6b72118464e39977,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01308
16,17,Resistors,Vishay,40617-01508,SMM02040C1508F,SMM02040C1508FB300,https://app.lcm-client.com/belimo/matching/40617-01508/a57dd45b8b8bfbbc6b72118464e3a808,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01508
17,18,Resistors,Vishay,40617-01508,MMA02040C1509F,MMA02040C1509FB300,https://app.lcm-client.com/belimo/matching/40617-01509/a57dd45b8b8bfbbc6b72118464e40ddc,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01508
18,19,Resistors,Vishay,40617-01509,SMM02040C1509F,SMM02040C1509FB300,https://app.lcm-client.com/belimo/matching/40617-01509/a57dd45b8b8bfbbc6b72118464e41200,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01509
19,20,Resistors,Vishay,40617-01509,MMA02040C1800F,MMA02040C1800FB300,https://app.lcm-client.com/belimo/matching/40617-01800/a57dd45b8b8bfbbc6b72118464e48179,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01509
20,21,Resistors,Vishay,40617-03901,SMM02040C3901F,SMM02040C3901FB300,https://app.lcm-client.com/belimo/matching/40617-03901/a57dd45b8b8bfbbc6b72118464e91b53,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03901
21,22,Resistors,Vishay,40617-04301,MMA02040C4301F,MMA02040C4301FB300,https://app.lcm-client.com/belimo/matching/40617-04301/a57dd45b8b8bfbbc6b72118464e98b90,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04301
22,23,Resistors,Vishay,40617-04301,SMM02040C4301F,SMM02040C4301FB300,https://app.lcm-client.com/belimo/matching/40617-04301/a57dd45b8b8bfbbc6b72118464e9917e,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04301
23,24,Resistors,Vishay,40617-04700,MMA02040C4700F,MMA02040C4700FB300,https://app.lcm-client.com/belimo/matching/40617-04700/a57dd45b8b8bfbbc6b72118464ea276d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04700
24,25,Resistors,Vishay,40617-04700,SMM02040C4700F,SMM02040C4700FB300,https://app.lcm-client.com/belimo/matching/40617-04700/a57dd45b8b8bfbbc6b72118464ea2ceb,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04700
25,26,Resistors,Vishay,47180,MBB02070C1052F,MBB02070C1052FRP00,https://app.lcm-client.com/belimo/matching/47180/a57dd45b8b8bfbbc6b72118464f9e611,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47180
26,27,Resistors,Vishay,47181,MBB02070C7322F,MBB02070C7322FRP00,https://app.lcm-client.com/belimo/matching/47181/a57dd45b8b8bfbbc6b72118464fa0d74,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47181
27,28,Resistors,Vishay,47182,MBB02070C8062F,MBB02070C8062FR100 ,https://app.lcm-client.com/belimo/matching/47182/a57dd45b8b8bfbbc6b72118464fa284b,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47182
28,29,Resistors,Vishay,47183,MBB02070C2873F,MBB02070C2873FRP00,https://app.lcm-client.com/belimo/matching/47183/a57dd45b8b8bfbbc6b72118464fa487f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47183
29,30,Resistors,Vishay,47184,MBB02070C4304F,MBB02070C4304FRP00,https://app.lcm-client.com/belimo/matching/47184/a57dd45b8b8bfbbc6b72118464fa7121,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47184
30,31,Resistors,Vishay,47340,MBB02070C4531F,MBB02070C4531FRP00,https://app.lcm-client.com/belimo/matching/47340/a57dd45b8b8bfbbc6b72118464fbae15,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47340
31,32,Resistors,Vishay,47341,MBB02070C5601F,MBB02070C5601FRP00,https://app.lcm-client.com/belimo/matching/47341/a57dd45b8b8bfbbc6b72118464fbbb63,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47341
32,33,Resistors,Vishay,47342,MBB02070C4423F,MBB02070C4423FRP00,https://app.lcm-client.com/belimo/matching/47342/a57dd45b8b8bfbbc6b72118464fbd854,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47342
33,34,Resistors,Vishay,47343,MBB02070C2671F,MBB02070C2671FRP00,https://app.lcm-client.com/belimo/matching/47343/a57dd45b8b8bfbbc6b72118464fbf0df,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47343
34,35,Resistors,Vishay,47344,MBB02070C6202F,MBB02070C6202FRP00,https://app.lcm-client.com/belimo/matching/47344/a57dd45b8b8bfbbc6b72118464fc0ace,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47344
35,36,Resistors,Vishay,47355-01104,MBB02070C1104F,MBB02070C1104FRP00,https://app.lcm-client.com/belimo/matching/47355-01104/a57dd45b8b8bfbbc6b72118464fc27b6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01104
36,37,Resistors,Vishay,47355-01104,MRS25000C1104F,MRS25000C1104FRP00,https://app.lcm-client.com/belimo/matching/47355-01104/a57dd45b8b8bfbbc6b72118464fc3277,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01104
37,38,Resistors,Vishay,47355-01153,MBB02070C1153F,MBB02070C1153FRP00,https://app.lcm-client.com/belimo/matching/47355-01153/a57dd45b8b8bfbbc6b72118464fc55bf,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01153
38,39,Resistors,Vishay,47355-01153,MRS25000C1153F,MRS25000C1153FRP00 ,https://app.lcm-client.com/belimo/matching/47355-01153/a57dd45b8b8bfbbc6b72118464fc6578,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01153
39,40,Resistors,Vishay,47355-01208,MBB02070C1208F,MBB02070C1208FRP00,https://app.lcm-client.com/belimo/matching/47355-01208/a57dd45b8b8bfbbc6b72118464fc73ef,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01208
40,41,Resistors,Vishay,40617-04992,SMM02040C4992F,SMM02040C4992FB300,https://app.lcm-client.com/belimo/matching/40617-04992/c8cb570d5127ae96aaae8eee6648e367,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04992
41,42,Resistors,Vishay,40617-05109,MMA02040C5109F,MMA02040C5109FB300,https://app.lcm-client.com/belimo/matching/40617-05109/c8cb570d5127ae96aaae8eee66495230,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-05109
42,43,Resistors,Vishay,40617-05109,SMM02040C5109F,SMM02040C5109FB300,https://app.lcm-client.com/belimo/matching/40617-05109/c8cb570d5127ae96aaae8eee66496136,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-05109
43,44,Resistors,Vishay,40617-05601,MMA02040C5601F,MMA02040C5601FB300,https://app.lcm-client.com/belimo/matching/40617-05601/c8cb570d5127ae96aaae8eee6649c485,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-05601
44,45,Resistors,Vishay,40617-05601,SMM02040C5601F,SMM02040C5601FB300,https://app.lcm-client.com/belimo/matching/40617-05601/c8cb570d5127ae96aaae8eee6649c730,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-05601
45,46,Resistors,Vishay,40617-06208,MMA02040C6208F,MMA02040C6208FB300,https://app.lcm-client.com/belimo/matching/40617-06208/c8cb570d5127ae96aaae8eee664a2dc7,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06208
46,47,Resistors,Vishay,40617-06208,SMM02040C6208F,SMM02040C6208FB300,https://app.lcm-client.com/belimo/matching/40617-06208/c8cb570d5127ae96aaae8eee664a3d62,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06208
47,48,Resistors,Vishay,40617-06800,MMA02040C6800F,MMA02040C6800FB300,https://app.lcm-client.com/belimo/matching/40617-06800/c8cb570d5127ae96aaae8eee664aadfe,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06800
48,49,Resistors,Vishay,40617-06800,SMM02040C6800F,SMM02040C6800FB300,https://app.lcm-client.com/belimo/matching/40617-06800/c8cb570d5127ae96aaae8eee664ab3f4,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06800
49,50,Resistors,Vishay,40617-06801,MMA02040C6801F,MMA02040C6801FB300,https://app.lcm-client.com/belimo/matching/40617-06801/c8cb570d5127ae96aaae8eee664b9f72,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06801
50,51,Resistors,Vishay,40618-07502,CRCW251275K0JN,CRCW251275K0JNEG,https://app.lcm-client.com/belimo/matching/40618-07502/c8cb570d5127ae96aaae8eee664dbba8,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/40618-07502
51,52,Resistors,Vishay,40663-03307,MMB02070C3307J,MMB02070C3307JB200,https://app.lcm-client.com/belimo/matching/40663-03307/c8cb570d5127ae96aaae8eee664ded91,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40663-03307
52,53,Resistors,Vishay,40663-05107,MMB02070C5107J,MMB02070C5107JB200,https://app.lcm-client.com/belimo/matching/40663-05107/c8cb570d5127ae96aaae8eee664e0785,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40663-05107
53,54,Resistors,Vishay,40701-01001,PR01000101001F,PR01000101001FR500,https://app.lcm-client.com/belimo/matching/40701-01001/c8cb570d5127ae96aaae8eee664e1100,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40701-01001
54,55,Resistors,Vishay,40702,MBE04140C8200F,MBE04140C8200FR200,https://app.lcm-client.com/belimo/matching/40702/c8cb570d5127ae96aaae8eee664e2354,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40702
55,56,Resistors,Vishay,40703-04990,PR02000204990F,PR02000204990FR500,https://app.lcm-client.com/belimo/matching/40703-04990/c8cb570d5127ae96aaae8eee664e3084,nok,Automotive,Yes,y,Missing In LCM,https://app.lcm-client.com/belimo/part/40703-04990
56,57,Resistors,Vishay,40710-05600,CPF3560R00FKE,CPF3560R00FKEE6,https://app.lcm-client.com/belimo/matching/40710-05600/c8cb570d5127ae96aaae8eee664e4712,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40710-05600
57,58,Resistors,Vishay,40710-05600,CPF3560R00FLE,CPF3560R00FLE36,https://app.lcm-client.com/belimo/matching/40710-05600/c8cb570d5127ae96aaae8eee664e48da,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40710-05600
58,59,Resistors,Vishay,41917-02208,RCS12062R20JN,RCS12062R20JNEA,https://app.lcm-client.com/belimo/matching/41917-02208/c8cb570d5127ae96aaae8eee66591f88,ok,STD,Exption,n,,https://app.lcm-client.com/belimo/part/41917-02208
59,60,Resistors,Vishay,41917-02209,RCS120622R0JN,RCS120622R0JNEA,https://app.lcm-client.com/belimo/matching/41917-02209/c8cb570d5127ae96aaae8eee66593e8b,ok,STD,Exption,n,,https://app.lcm-client.com/belimo/part/41917-02209
60,61,Resistors,Vishay,47012-02371,MRS25000C2371F,MRS25000C2371FRP00,https://app.lcm-client.com/belimo/matching/47012-02371/c8cb570d5127ae96aaae8eee665ba18c,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-02371
61,62,Resistors,Vishay,47012-02400,MBB02070C2400F,MBB02070C2400FRP00,https://app.lcm-client.com/belimo/matching/47012-02400/c8cb570d5127ae96aaae8eee665bc184,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47012-02400
62,63,Resistors,Vishay,47012-02400,MRS25000C2400F,MRS25000C2400FRP00,https://app.lcm-client.com/belimo/matching/47012-02400/c8cb570d5127ae96aaae8eee665bcc30,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47012-02400
63,64,Resistors,Vishay,47072,MBB02070C3301F,MBB02070C3301FRP00,https://app.lcm-client.com/belimo/matching/47072/c8cb570d5127ae96aaae8eee665e3813,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47072
64,65,Resistors,Vishay,47080,MBB02070C1603F,MBB02070C1603FRP00,https://app.lcm-client.com/belimo/matching/47080/c8cb570d5127ae96aaae8eee665e5210,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47080
65,66,Resistors,Vishay,47100,MBB02070C4122F,MBB02070C4122FRP00,https://app.lcm-client.com/belimo/matching/47100/c8cb570d5127ae96aaae8eee665e71cc,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47100
66,67,Resistors,Vishay,47101,MBB02070C1479F,MBB02070C1479FRP00,https://app.lcm-client.com/belimo/matching/47101/c8cb570d5127ae96aaae8eee665e9aa1,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47101
67,68,Resistors,Vishay,47102,MBB02070C8871F,MBB02070C8871FRP00,https://app.lcm-client.com/belimo/matching/47102/c8cb570d5127ae96aaae8eee665eb013,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47102
68,69,Resistors,Vishay,47103,MBB02070C2491F,MBB02070C2491FRP00,https://app.lcm-client.com/belimo/matching/47103/c8cb570d5127ae96aaae8eee665ed09c,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47103
69,70,Resistors,Vishay,47122,MBB02070C1583F,MBB02070C1583FRP00,https://app.lcm-client.com/belimo/matching/47122/c8cb570d5127ae96aaae8eee665f1b46,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47122
70,71,Resistors,Vishay,47142,MBB02070C8201F,MBB02070C8201FRP00,https://app.lcm-client.com/belimo/matching/47142/c8cb570d5127ae96aaae8eee66606f98,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47142
71,72,Resistors,Vishay,47145,MBB02070C1203F,MBB02070C1203FRP00,https://app.lcm-client.com/belimo/matching/47145/c8cb570d5127ae96aaae8eee6660a704,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47145
72,73,Resistors,Vishay,47162,MBB02070C5362F,MBB02070C5362FRP00,https://app.lcm-client.com/belimo/matching/47162/c8cb570d5127ae96aaae8eee6660c3c6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47162
73,74,Resistors,Vishay,47168,MBB02070C3003F,MBB02070C3003FRP00,https://app.lcm-client.com/belimo/matching/47168/c8cb570d5127ae96aaae8eee6660fe68,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47168
74,75,Resistors,Vishay,47179,MBB02070C9760F,MBB02070C9760FRP00,https://app.lcm-client.com/belimo/matching/47179/c8cb570d5127ae96aaae8eee666120a3,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47179
75,76,Resistors,Vishay,40412-02701,CRCW06032K70DH,CRCW06032K70DHEAP,https://app.lcm-client.com/belimo/matching/40412-02701/ef351458b324e0850a464074929e4c4e,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/40412-02701
76,77,Resistors,Vishay,40412-02701,CRCW06032K70DK,CRCW06032K70DHEAP,https://app.lcm-client.com/belimo/matching/40412-02701/ef351458b324e0850a464074929e54c2,ok,Automotive,Exption,y,PPM Difference,https://app.lcm-client.com/belimo/part/40412-02701
77,78,Resistors,Vishay,40542,MBB02070C2702F,MBB02070C2702FRP00 ,https://app.lcm-client.com/belimo/matching/40542/ef351458b324e0850a464074929f8a38,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40542
78,79,Resistors,Vishay,40542,MBB0207IC2702F,MBB0207IC2702FRP00,https://app.lcm-client.com/belimo/matching/40542/ef351458b324e0850a464074929f962a,nok,Medical,Yes,y,Missing In LCM,https://app.lcm-client.com/belimo/part/40542
79,80,Resistors,Vishay,40542,MRS25000C2702F,MRS25000C2702FRP00,https://app.lcm-client.com/belimo/matching/40542/ef351458b324e0850a464074929f971d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40542
80,81,Resistors,Vishay,40602-01100,SMM02070C1100F,SMM02070C1100FBS00,https://app.lcm-client.com/belimo/matching/40602-01100/ef351458b324e0850a46407492a0fcf3,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01100
81,82,Resistors,Vishay,40602-01501,MMB02070C1501F,MMB02070C1501FB700,https://app.lcm-client.com/belimo/matching/40602-01501/ef351458b324e0850a46407492a1312e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01501
82,83,Resistors,Vishay,40602-01501,SMM02070C1501F,SMM02070C1501FBS00,https://app.lcm-client.com/belimo/matching/40602-01501/ef351458b324e0850a46407492a13317,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01501
83,84,Resistors,Vishay,40602-01503,MMB02070C1503F,MMB02070C1503FB200,https://app.lcm-client.com/belimo/matching/40602-01503/ef351458b324e0850a46407492a166ca,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01503
84,85,Resistors,Vishay,40602-01503,SMM02070C1503F,SMM02070C1503FBS00,https://app.lcm-client.com/belimo/matching/40602-01503/ef351458b324e0850a46407492a172df,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01503
85,86,Resistors,Vishay,40602-01801,MMB02070C1801F,MMB02070C1801FB700,https://app.lcm-client.com/belimo/matching/40602-01801/ef351458b324e0850a46407492a19e31,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01801
86,87,Resistors,Vishay,40602-01801,SMM02070C1801F,SMM02070C1801FBS00,https://app.lcm-client.com/belimo/matching/40602-01801/ef351458b324e0850a46407492a1adcd,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01801
87,88,Resistors,Vishay,40602-02201,MMB02070C2201F,MMB02070C2201FB700,https://app.lcm-client.com/belimo/matching/40602-02201/ef351458b324e0850a46407492a1e4d1,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02201
88,89,Resistors,Vishay,40602-02201,SMM02070C2201F,SMM02070C2201FBS00,https://app.lcm-client.com/belimo/matching/40602-02201/ef351458b324e0850a46407492a1e7f8,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02201
89,90,Resistors,Vishay,40602-02203,MMB02070C2203F,MMB02070C2203FB200,https://app.lcm-client.com/belimo/matching/40602-02203/ef351458b324e0850a46407492a21787,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02203
90,91,Resistors,Vishay,40602-04701,SMM02070C4701F,SMM02070C4701FBS00,https://app.lcm-client.com/belimo/matching/40602-04701/ef351458b324e0850a46407492a55cd6,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04701
91,92,Resistors,Vishay,40602-04702,MMB02070C4702F,MMB02070C4702FB200,https://app.lcm-client.com/belimo/matching/40602-04702/ef351458b324e0850a46407492a5987a,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04702
92,93,Resistors,Vishay,40602-04702,SMM02070C4702F,SMM02070C4702FBS00 ,https://app.lcm-client.com/belimo/matching/40602-04702/ef351458b324e0850a46407492a59e12,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04702
93,94,Resistors,Vishay,40602-04703,MMB02070C4703F,MMB02070C4703FB200 ,https://app.lcm-client.com/belimo/matching/40602-04703/ef351458b324e0850a46407492a5c84a,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04703
94,95,Resistors,Vishay,40602-04703,SMM02070C4703F,SMM02070C4703FBS00,https://app.lcm-client.com/belimo/matching/40602-04703/ef351458b324e0850a46407492a5cef1,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04703
95,96,Resistors,Vishay,40602-05100,MMB02070C5100F,MMB02070C5100FB700,https://app.lcm-client.com/belimo/matching/40602-05100/ef351458b324e0850a46407492a6213a,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05100
96,97,Resistors,Vishay,40602-05100,SMM02070C5100F,SMM02070C5100FBP00,https://app.lcm-client.com/belimo/matching/40602-05100/ef351458b324e0850a46407492a628ff,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05100
97,98,Resistors,Vishay,40602-05603,MMB02070C5603F,MMB02070C5603FB700,https://app.lcm-client.com/belimo/matching/40602-05603/ef351458b324e0850a46407492a653e8,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05603
98,99,Resistors,Vishay,40602-05603,SMM02070C5603F,SMM02070C5603FBS00,https://app.lcm-client.com/belimo/matching/40602-05603/ef351458b324e0850a46407492a65dfb,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05603
99,100,Resistors,Vishay,40602-05607,MMB02070C5607F,MMB02070C5607FB200,https://app.lcm-client.com/belimo/matching/40602-05607/ef351458b324e0850a46407492a66cc9,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05607
100,101,Resistors,Vishay,40613-02002,MCU08050D2002B,MCU08050D2002BP500,https://app.lcm-client.com/belimo/matching/40613-02002/a57dd45b8b8bfbbc6b72118464d889cb,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-02002
101,102,Resistors,Vishay,40613-02432,MCU08050D2431B,MCU08050D2431BP500,https://app.lcm-client.com/belimo/matching/40613-02432/a57dd45b8b8bfbbc6b72118464d8b980,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-02432
102,103,Resistors,Vishay,40613-03321,MCU08050D3321B,MCU08050D3321BP500,https://app.lcm-client.com/belimo/matching/40613-03321/a57dd45b8b8bfbbc6b72118464d8ef7d,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-03321
103,104,Resistors,Vishay,40613-03601,MCU08050D3601B,MCU08050D3601BP500,https://app.lcm-client.com/belimo/matching/40613-03601/a57dd45b8b8bfbbc6b72118464d918c6,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-03601
104,105,Resistors,Vishay,40613-04022,MCU08050D4022B,MCU08050D4022BP500,https://app.lcm-client.com/belimo/matching/40613-04022/a57dd45b8b8bfbbc6b72118464da3edf,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-04022
105,106,Resistors,Vishay,40613-06802,MCU08050D6802B,MCU08050D6802BP500,https://app.lcm-client.com/belimo/matching/40613-06802/a57dd45b8b8bfbbc6b72118464da579b,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-06802
106,107,Resistors,Vishay,40613-07871,MCU08050D7871B,MCU08050D7871BP500,https://app.lcm-client.com/belimo/matching/40613-07871/a57dd45b8b8bfbbc6b72118464da6f4d,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-07871
107,108,Resistors,Vishay,40613-09762,MCU08050D9762B,MCU08050D9762BP500,https://app.lcm-client.com/belimo/matching/40613-09762/a57dd45b8b8bfbbc6b72118464da97e7,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-09762
108,109,Resistors,Vishay,40617-01204,MMA02040C1205F,MMA02040C1205FB300,https://app.lcm-client.com/belimo/matching/40617-01204/a57dd45b8b8bfbbc6b72118464e1f209,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01204
109,110,Resistors,Vishay,40617-01208,MMA02040C1208F,MMA02040C1208FB300,https://app.lcm-client.com/belimo/matching/40617-01208/a57dd45b8b8bfbbc6b72118464e26c1f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01208
110,111,Resistors,Vishay,47215,MBB02070C3603F,MBB02070C3603FRP00,https://app.lcm-client.com/belimo/matching/47215/a57dd45b8b8bfbbc6b72118464fa91aa,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47215
111,112,Resistors,Vishay,47232,MBB02070C5622F,MBB02070C5622FRP00,https://app.lcm-client.com/belimo/matching/47232/a57dd45b8b8bfbbc6b72118464fabb7c,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47232
112,113,Resistors,Vishay,47245,MBB02070C1330F,MBB02070C1330FRP00,https://app.lcm-client.com/belimo/matching/47245/a57dd45b8b8bfbbc6b72118464fadaf4,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47245
113,114,Resistors,Vishay,47251,MBB02070C1371F,MBB02070C1371FRP00,https://app.lcm-client.com/belimo/matching/47251/a57dd45b8b8bfbbc6b72118464faf77a,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47251
114,115,Resistors,Vishay,47274,MBB02070C1108F,MBB02070C1108FRP00,https://app.lcm-client.com/belimo/matching/47274/a57dd45b8b8bfbbc6b72118464fb1287,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47274
115,116,Resistors,Vishay,47313,MBB02070C3303F,MBB02070C3303FRP00,https://app.lcm-client.com/belimo/matching/47313/a57dd45b8b8bfbbc6b72118464fb22db,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47313
116,117,Resistors,Vishay,47315,MBB02070C1604F,MBB02070C1604FRP00,https://app.lcm-client.com/belimo/matching/47315/a57dd45b8b8bfbbc6b72118464fb3e0d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47315
117,118,Resistors,Vishay,47316,MBB02070C4704F,MBB02070C4704FRP00,https://app.lcm-client.com/belimo/matching/47316/a57dd45b8b8bfbbc6b72118464fb5c4f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47316
118,119,Resistors,Vishay,47337,MBB02070C2002F,MBB02070C2002FRP00,https://app.lcm-client.com/belimo/matching/47337/a57dd45b8b8bfbbc6b72118464fb756d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47337
119,120,Resistors,Vishay,47339,MBB02070C6802F,MBB02070C6802FRP00,https://app.lcm-client.com/belimo/matching/47339/a57dd45b8b8bfbbc6b72118464fb8f39,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47339
120,121,Resistors,Vishay,40617-06801,SMM02040C6801F,SMM02040C6801FB000,https://app.lcm-client.com/belimo/matching/40617-06801/c8cb570d5127ae96aaae8eee664ba638,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06801
121,122,Resistors,Vishay,40617-06807,MMA02040C6807F,MMA02040C6807FB300,https://app.lcm-client.com/belimo/matching/40617-06807/c8cb570d5127ae96aaae8eee664c0b79,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06807
122,123,Resistors,Vishay,40617-06807,SMM02040B6807J,SMM02040B6807JB000,https://app.lcm-client.com/belimo/matching/40617-06807/c8cb570d5127ae96aaae8eee664c1061,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06807
123,124,Resistors,Vishay,40617-07502,MMA02040C7502F,MMA02040C7502FB200,https://app.lcm-client.com/belimo/matching/40617-07502/c8cb570d5127ae96aaae8eee664c7046,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-07502
124,125,Resistors,Vishay,40617-07502,SMM02040C7502F,SMM02040C7502FB000,https://app.lcm-client.com/belimo/matching/40617-07502/c8cb570d5127ae96aaae8eee664c780d,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-07502
125,126,Resistors,Vishay,40617-09107,MMA02040C9107F,MMA02040C9107FB300,https://app.lcm-client.com/belimo/matching/40617-09107/c8cb570d5127ae96aaae8eee664cd373,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-09107
126,127,Resistors,Vishay,40617-09107,SMM02040C9107F,SMM02040C9107FB000,https://app.lcm-client.com/belimo/matching/40617-09107/c8cb570d5127ae96aaae8eee664cd73a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-09107
127,128,Resistors,Vishay,40618-01001,CRCW25121K00JN,CRCW25121K00JNEG,https://app.lcm-client.com/belimo/matching/40618-01001/c8cb570d5127ae96aaae8eee664d0cdc,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/40618-01001
128,129,Resistors,Vishay,40618-01501,CRCW25121K50JN,CRCW25121K50JNEG,https://app.lcm-client.com/belimo/matching/40618-01501/c8cb570d5127ae96aaae8eee664d2f90,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/40618-01501
129,130,Resistors,Vishay,40618-02401,CRCW25122K40JN,CRCW25122K40JNEG,https://app.lcm-client.com/belimo/matching/40618-02401/c8cb570d5127ae96aaae8eee664d5a8d,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/40618-02401
130,131,Resistors,Vishay,47123,MBB02070C1873F,MBB02070C1873FRP00,https://app.lcm-client.com/belimo/matching/47123/c8cb570d5127ae96aaae8eee665f3f95,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47123
131,132,Resistors,Vishay,47125,MBB02070C1008F,MBB02070C1008FRP00,https://app.lcm-client.com/belimo/matching/47125/c8cb570d5127ae96aaae8eee665f5b74,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47125
132,133,Resistors,Vishay,47131,MBB02070C6193F,MBB02070C6193FRP00,https://app.lcm-client.com/belimo/matching/47131/c8cb570d5127ae96aaae8eee665f8495,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47131
133,134,Resistors,Vishay,47132,MBB02070C3323F,MBB02070C3323FRP00,https://app.lcm-client.com/belimo/matching/47132/c8cb570d5127ae96aaae8eee665fa357,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47132
134,135,Resistors,Vishay,47133,MBB02070C1433F,MBB02070C1433FRP00,https://app.lcm-client.com/belimo/matching/47133/c8cb570d5127ae96aaae8eee665fc181,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47133
135,136,Resistors,Vishay,47137,MBB02070C4700F,MBB02070C4700FRP00,https://app.lcm-client.com/belimo/matching/47137/c8cb570d5127ae96aaae8eee665fddc6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47137
136,137,Resistors,Vishay,47138,MBB02070C1653F,MBB02070C1653FRP00,https://app.lcm-client.com/belimo/matching/47138/c8cb570d5127ae96aaae8eee6660128b,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47138
137,138,Resistors,Vishay,47139,MBB02070C9104F,MBB02070C9104FRP00,https://app.lcm-client.com/belimo/matching/47139/c8cb570d5127ae96aaae8eee66602471,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47139
138,139,Resistors,Vishay,47140,MBB02070C3652F,MBB02070C3652FRP00,https://app.lcm-client.com/belimo/matching/47140/c8cb570d5127ae96aaae8eee6660397f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47140
139,140,Resistors,Vishay,47141,MBB02070C4873F,MBB02070C4873FRP00,https://app.lcm-client.com/belimo/matching/47141/c8cb570d5127ae96aaae8eee66605f85,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47141
140,141,Resistors,Vishay,40602-02203,SMM02070C2203F,SMM02070C2203FBS00,https://app.lcm-client.com/belimo/matching/40602-02203/ef351458b324e0850a46407492a2262b,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02203
141,142,Resistors,Vishay,40602-02204,MMB02070C2204F,MMB02070C2204FB200,https://app.lcm-client.com/belimo/matching/40602-02204/ef351458b324e0850a46407492a250b9,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02204
142,143,Resistors,Vishay,40602-02204,SMM02070C2204F,SMM02070C2204FBS00,https://app.lcm-client.com/belimo/matching/40602-02204/ef351458b324e0850a46407492a2542a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02204
143,144,Resistors,Vishay,40602-02401,MMB02070C2401F,MMB02070C2401FB200,https://app.lcm-client.com/belimo/matching/40602-02401/ef351458b324e0850a46407492a28bcc,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02401
144,145,Resistors,Vishay,40602-02401,SMM02070C2401F,SMM02070C2401FBS00,https://app.lcm-client.com/belimo/matching/40602-02401/ef351458b324e0850a46407492a295bf,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02401
145,146,Resistors,Vishay,40602-02402,MMB02070C2402F,MMB02070C2402FB200,https://app.lcm-client.com/belimo/matching/40602-02402/ef351458b324e0850a46407492a2d0e4,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02402
146,147,Resistors,Vishay,40602-02402,SMM02070C2402F,SMM02070C2402FBS00,https://app.lcm-client.com/belimo/matching/40602-02402/ef351458b324e0850a46407492a2d8ad,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02402
147,148,Resistors,Vishay,40602-02403,MMB02070C2403F,MMB02070C2403FB700,https://app.lcm-client.com/belimo/matching/40602-02403/ef351458b324e0850a46407492a2f357,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02403
148,149,Resistors,Vishay,40602-02403,SMM02070C2403F,SMM02070C2403FBP00,https://app.lcm-client.com/belimo/matching/40602-02403/ef351458b324e0850a46407492a2ffb8,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02403
149,150,Resistors,Vishay,40602-02491,MMB02070C2491F,MMB02070C2491FB700,https://app.lcm-client.com/belimo/matching/40602-02491/ef351458b324e0850a46407492a32ce6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02491
150,151,Resistors,Vishay,40602-06209,MMB02070C6209F,MMB02070C6209FB200,https://app.lcm-client.com/belimo/matching/40602-06209/ef351458b324e0850a46407492a6a237,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-06209
151,152,Resistors,Vishay,40602-06209,SMM02070C6209F,SMM02070C6209FBP00,https://app.lcm-client.com/belimo/matching/40602-06209/ef351458b324e0850a46407492a6a9a2,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-06209
152,153,Resistors,Vishay,40602-07502,MMB02070C7502F,MMB02070C7502FB700,https://app.lcm-client.com/belimo/matching/40602-07502/ef351458b324e0850a46407492a6e1c2,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-07502
153,154,Resistors,Vishay,40602-07502,SMM02070C7502F,SMM02070C7502FBS00,https://app.lcm-client.com/belimo/matching/40602-07502/ef351458b324e0850a46407492a6ee06,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-07502
154,155,Resistors,Vishay,40602-08063,MMB02070C8063F,MMB02070C8063FB700,https://app.lcm-client.com/belimo/matching/40602-08063/ef351458b324e0850a46407492a7303b,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08063
155,156,Resistors,Vishay,40602-08063,SMM02070C8063F,SMM02070C8063FBP00,https://app.lcm-client.com/belimo/matching/40602-08063/ef351458b324e0850a46407492a737bf,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08063
156,157,Resistors,Vishay,40602-08202,MMB02070C8202F,MMB02070C8202FB300,https://app.lcm-client.com/belimo/matching/40602-08202/ef351458b324e0850a46407492a76d3e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08202
157,158,Resistors,Vishay,40602-08202,SMM02070C8202F,SMM02070C8202FBS00,https://app.lcm-client.com/belimo/matching/40602-08202/ef351458b324e0850a46407492a770da,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08202
158,159,Resistors,Vishay,40602-08207,MMB02070C8207F,MMB02070C8207FB200,https://app.lcm-client.com/belimo/matching/40602-08207/ef351458b324e0850a46407492a78da5,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08207
159,160,Resistors,Vishay,40602-09100,MMB02070C9100F,MMB02070C9100FB700,https://app.lcm-client.com/belimo/matching/40602-09100/ef351458b324e0850a46407492a7a753,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-09100
160,161,Resistors,Vishay,40617-01108,SMM02040C1108F,SMM02040C1108FB300,https://app.lcm-client.com/belimo/matching/40617-01108/ef351458b324e0850a46407492bb4cca,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01108
161,162,Resistors,Vishay,40617-01201,MMA02040C1201F,MMA02040C1201FB300,https://app.lcm-client.com/belimo/matching/40617-01201/ef351458b324e0850a46407492bb95e2,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01201
162,163,Resistors,Vishay,40617-01201,SMM02040C1201F,SMM02040C1201FB000,https://app.lcm-client.com/belimo/matching/40617-01201/ef351458b324e0850a46407492bb972a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01201
163,164,Resistors,Vishay,40617-01202,MMA02040C1202F,MMA02040C1202FB000,https://app.lcm-client.com/belimo/matching/40617-01202/ef351458b324e0850a46407492bbf6a3,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01202
164,165,Resistors,Vishay,40617-01202,SMM02040C1202F,SMM02040C1202FB000,https://app.lcm-client.com/belimo/matching/40617-01202/ef351458b324e0850a46407492bbfc0f,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01202
165,166,Resistors,Vishay,40617-01801,MMA02040C1801F,MMA02040C1801FB000,https://app.lcm-client.com/belimo/matching/40617-01801/ef351458b324e0850a46407492be01bb,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01801
166,167,Resistors,Vishay,40617-01801,SMM02040C1801F,SMM02040C1801FB000,https://app.lcm-client.com/belimo/matching/40617-01801/ef351458b324e0850a46407492be0e90,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01801
167,168,Resistors,Vishay,40617-01808,MMA02040C1808F,MMA02040C1808FB000,https://app.lcm-client.com/belimo/matching/40617-01808/ef351458b324e0850a46407492be536e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01808
168,169,Resistors,Vishay,40617-01808,SMM02040C1808F,SMM02040C1808FB300,https://app.lcm-client.com/belimo/matching/40617-01808/ef351458b324e0850a46407492be5915,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01808
169,170,Resistors,Vishay,40617-02002,MMA02040C2002F,MMA02040C2002FB300,https://app.lcm-client.com/belimo/matching/40617-02002/ef351458b324e0850a46407492becaa5,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02002
170,171,Resistors,Vishay,40754,PR02FS0205608K,PR02FS0205608KR500,https://app.lcm-client.com/belimo/matching/40754/ef351458b324e0850a46407492c56031,nok,Automotive,Yes,y,Requires Update,https://app.lcm-client.com/belimo/part/40754
171,172,Resistors,Vishay,40754-01502,CPF215K000JN,CPF215K000JNEE6,https://app.lcm-client.com/belimo/matching/40754/ef351458b324e0850a46407492c56031,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40754-01502
172,173,Resistors,Vishay,40754-01502,PR02000201502J,PR02000201502JR500,https://app.lcm-client.com/belimo/matching/40754-01502/ef351458b324e0850a46407492c57dde,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40754-01502
173,174,Resistors,Vishay,40754-08201,CPF28K2000JN,CPF28K2000JNEE6,https://app.lcm-client.com/belimo/matching/40754-08201/ef351458b324e0850a46407492c580d0,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40754-08201
174,175,Resistors,Vishay,40754-08201,PR02000208201J,PR02000208201JR500,https://app.lcm-client.com/belimo/matching/40754-08201/ef351458b324e0850a46407492c5908d,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40754-08201
175,176,Resistors,Vishay,40754-15608,CPF25R6000JN,CPF25R6000JNEE6,https://app.lcm-client.com/belimo/matching/40754-15608/ef351458b324e0850a46407492c5b5db,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40754-15608
176,177,Resistors,Vishay,40754-15608,PR02000205608J,PR02000205608JR500,https://app.lcm-client.com/belimo/matching/40754-15608/ef351458b324e0850a46407492c5bcec,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40754-15608
177,178,Resistors,Vishay,40850,MBB02070C1101F,MBB02070C1101FRP00,https://app.lcm-client.com/belimo/matching/40850/ef351458b324e0850a46407492c6a39a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40850
178,179,Resistors,Vishay,40850,MRS25000C1101F,MRS25000C1101FRP00,https://app.lcm-client.com/belimo/matching/40850/ef351458b324e0850a46407492c6a870,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40850
179,180,Resistors,Vishay,40851,MBB02070C1501F,MBB02070C1501FRP00,https://app.lcm-client.com/belimo/matching/40851/ef351458b324e0850a46407492c6be78,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40851
180,181,Resistors,Vishay,40862,MRS25000C2203F,MRS25000C2203FRP00,https://app.lcm-client.com/belimo/matching/40862/ef351458b324e0850a46407492c741c4,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40862
181,182,Resistors,Vishay,40867,MBB02070C2403F,MBB02070C2403FRP00,https://app.lcm-client.com/belimo/matching/40867/ef351458b324e0850a46407492c751d7,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40867
182,183,Resistors,Vishay,40867,MRS25000C2403F,MRS25000C2403FRP00,https://app.lcm-client.com/belimo/matching/40867/ef351458b324e0850a46407492c755f8,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40867
183,184,Resistors,Vishay,40877,MBB02070C8661F,MBB02070C8661FRP00,https://app.lcm-client.com/belimo/matching/40877/ef351458b324e0850a46407492c770f6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40877
184,185,Resistors,Vishay,40877,MRS25000C8661F,MRS25000C8661FRP00,https://app.lcm-client.com/belimo/matching/40877/ef351458b324e0850a46407492c77fc8,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40877
185,186,Resistors,Vishay,40885,MBB02070C4221F,MBB02070C4221FRP00,https://app.lcm-client.com/belimo/matching/40885/ef351458b324e0850a46407492c78d94,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40885
186,187,Resistors,Vishay,40885,MRS25000C4221F,MRS25000C4221FRP00,https://app.lcm-client.com/belimo/matching/40885/ef351458b324e0850a46407492c791fe,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40885
187,188,Resistors,Vishay,40897,MBB02070C1009F,MBB02070C1009FRP00,https://app.lcm-client.com/belimo/matching/40897/ef351458b324e0850a46407492c85cab,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40897
188,189,Resistors,Vishay,40897,MRS25000C1009F,MRS25000C1009FRP00,https://app.lcm-client.com/belimo/matching/40897/ef351458b324e0850a46407492c85f06,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40897
189,190,Resistors,Vishay,40898,MBB02070C1102F,MBB02070C1102FRP00,https://app.lcm-client.com/belimo/matching/40898/ef351458b324e0850a46407492c87371,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40898
190,191,Resistors,Vishay,40926,MRS25000C8202F,MRS25000C8202FRP00,https://app.lcm-client.com/belimo/matching/40926/ef351458b324e0850a46407492c9893e,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40926
191,192,Resistors,Vishay,40927,MBB02070C1003F,MBB02070C1003FRP00,https://app.lcm-client.com/belimo/matching/40927/ef351458b324e0850a46407492c99e8a,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40927
192,193,Resistors,Vishay,40927,MRS25000C1003F,MRS25000C1003FRP00,https://app.lcm-client.com/belimo/matching/40927/ef351458b324e0850a46407492c9aaf7,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40927
193,194,Resistors,Vishay,40934,MRS25000C6202F,MRS25000C6202FRP00,https://app.lcm-client.com/belimo/matching/40934/ef351458b324e0850a46407492c9d6ee,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40934
194,195,Resistors,Vishay,40941,MBB02070C5602F,MBB02070C5602FRP00,https://app.lcm-client.com/belimo/matching/40941/ef351458b324e0850a46407492c9f1f8,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40941
195,196,Resistors,Vishay,40941,MRS25000C5602F,MRS25000C5602FRP00,https://app.lcm-client.com/belimo/matching/40941/ef351458b324e0850a46407492c9f940,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40941
196,197,Resistors,Vishay,40949,MBB02070C1500F,MBB02070C1500FRP00,https://app.lcm-client.com/belimo/matching/40949/ef351458b324e0850a46407492ca0e61,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40949
197,198,Resistors,Vishay,40949,MRS25000C1500F,MRS25000C1500FRP00,https://app.lcm-client.com/belimo/matching/40949/ef351458b324e0850a46407492ca16be,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40949
198,199,Resistors,Vishay,41237-01102,MMA02040D1102C,MMA02040D1102CB300,https://app.lcm-client.com/belimo/matching/40949/ef351458b324e0850a46407492ca16be,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/41237-01102
199,200,Resistors,Vishay,41749-02200,CMB02070X2200G,CMB02070X2200GB700,https://app.lcm-client.com/belimo/matching/41749-02200/ef351458b324e0850a46407492cb2e74,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/41749-02200
200,201,Resistors,Vishay,41861-02001,MCS04020D2001B,MCS04020D2001BE000,https://app.lcm-client.com/belimo/matching/41861-02001/ef351458b324e0850a46407492cd04a3,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/41861-02001
201,202,Resistors,Vishay,41861-02053,MCS04020D2053B,MCS04020D2053BE000,https://app.lcm-client.com/belimo/matching/41861-02053/ef351458b324e0850a46407492cd3674,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/41861-02053
202,203,Resistors,Vishay,41861-02702,MCS04020D2702B,MCS04020D2702BE000,https://app.lcm-client.com/belimo/matching/41861-02702/ef351458b324e0850a46407492cd5b69,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/41861-02702
203,204,Resistors,Vishay,41861-06802,MCS04020D6802B,MCS04020D6802BE000,https://app.lcm-client.com/belimo/matching/41861-06802/ef351458b324e0850a46407492cd9fd4,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/41861-06802
204,205,Resistors,Vishay,47012-02550,MBB02070C2550F,MBB02070C2550FRP00,https://app.lcm-client.com/belimo/matching/47012-02550/ef351458b324e0850a46407492d6899c,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/47012-02550
205,206,Resistors,Vishay,47012-02550,MRS25000C2550F,MRS25000C2550FRP00,https://app.lcm-client.com/belimo/matching/47012-02550/ef351458b324e0850a46407492d68c0f,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-02550
206,207,Resistors,Vishay,47012-03303,MRS25000C3303F,MRS25000C3303FRP00,https://app.lcm-client.com/belimo/matching/47012-03303/ef351458b324e0850a46407492d6aa08,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-03303
207,208,Resistors,Vishay,47012-03308,MBB02070C3308F,MBB02070C3308FRP00,https://app.lcm-client.com/belimo/matching/47012-03308/ef351458b324e0850a46407492d6c42d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47012-03308
208,209,Resistors,Vishay,47012-03308,MRS25000C3308F,MRS25000C3308FRP00,https://app.lcm-client.com/belimo/matching/47012-03308/ef351458b324e0850a46407492d6d03b,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-03308
209,210,Resistors,Vishay,47012-03830,MBB02070C3830F,MBB02070C3830FRP00,https://app.lcm-client.com/belimo/matching/47012-03830/ef351458b324e0850a46407492d6eaad,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/47012-03830
210,211,Resistors,Vishay,47042,MBB02070C1503F,MBB02070C1503FRP00,https://app.lcm-client.com/belimo/matching/47042/ef351458b324e0850a46407492d86be4,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/47042
211,212,Resistors,Vishay,47355-01279,MBB02070C1279F,MBB02070C1279FRP00,https://app.lcm-client.com/belimo/matching/47355-01279/ef351458b324e0850a46407492db9a16,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01279
212,213,Resistors,Vishay,47355-01279,MRS25000C1279F,MRS25000C1279FRP00,https://app.lcm-client.com/belimo/matching/47355-01279/ef351458b324e0850a46407492dba77c,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01279
213,214,Resistors,Vishay,47355-01501,MRS25000C1501F,MRS25000C1501FRP00,https://app.lcm-client.com/belimo/matching/47355-01501/ef351458b324e0850a46407492dbc315,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01501
214,215,Resistors,Vishay,47355-01653,MRS25000C1653F,MRS25000C1653FRP00,https://app.lcm-client.com/belimo/matching/47355-01653/ef351458b324e0850a46407492dbf3fd,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01653
215,216,Resistors,Vishay,47355-02671,MRS25000C2671F,MRS25000C2671FRP00,https://app.lcm-client.com/belimo/matching/47355-02671/ef351458b324e0850a46407492dc5b8c,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-02671
216,217,Resistors,Vishay,47355-03301,MRS25000C3301F,MRS25000C3301FRP00,https://app.lcm-client.com/belimo/matching/47355-03301/ef351458b324e0850a46407492dc82bf,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-03301
217,218,Resistors,Vishay,47355-05609,MBB02070C5609F,MBB02070C5609FRP00,https://app.lcm-client.com/belimo/matching/47355-05609/ef351458b324e0850a46407492dcab28,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-05609
218,219,Resistors,Vishay,47355-05609,MRS25000C5609F,MRS25000C5609FRP00,https://app.lcm-client.com/belimo/matching/47355-05609/ef351458b324e0850a46407492dcb421,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-05609
219,220,Resistors,Vishay,47355-05762,MBB02070C5762F,MBB02070C5762FRP00,https://app.lcm-client.com/belimo/matching/47355-05762/ef351458b324e0850a46407492dcdf45,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-05762
220,221,Resistors,Vishay,40617-01800,SMM02040C1800F,SMM02040C1800FB000,https://app.lcm-client.com/belimo/matching/40617-01800/a57dd45b8b8bfbbc6b72118464e48be7,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01800
221,222,Resistors,Vishay,40617-03001,MMA02040C3001F,MMA02040C3001FB000,https://app.lcm-client.com/belimo/matching/40617-03001/a57dd45b8b8bfbbc6b72118464e73cce,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03001
222,223,Resistors,Vishay,40617-03001,SMM02040C3001F,SMM02040C3001FB000,https://app.lcm-client.com/belimo/matching/40617-03001/a57dd45b8b8bfbbc6b72118464e74406,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03001
223,224,Resistors,Vishay,40617-03008,MMA02040C3008F,MMA02040C3008FB000,https://app.lcm-client.com/belimo/matching/40617-03008/a57dd45b8b8bfbbc6b72118464e79b6e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03008
224,225,Resistors,Vishay,40617-03008,SMM02040C3008F,SMM02040C3008FB000,https://app.lcm-client.com/belimo/matching/40617-03008/a57dd45b8b8bfbbc6b72118464e7a30e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03008
225,226,Resistors,Vishay,40617-03301,MMA02040C3301F,MMA02040C3301FB000,https://app.lcm-client.com/belimo/matching/40617-03301/a57dd45b8b8bfbbc6b72118464e81354,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03301
226,227,Resistors,Vishay,40617-03301,SMM02040C3301F,SMM02040C3301FB000,https://app.lcm-client.com/belimo/matching/40617-03301/a57dd45b8b8bfbbc6b72118464e818d6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03301
227,228,Resistors,Vishay,40617-03303,MMA02040C3303F,MMA02040C3303FB000,https://app.lcm-client.com/belimo/matching/40617-03303/a57dd45b8b8bfbbc6b72118464e88cee,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03303
228,229,Resistors,Vishay,40617-03303,SMM02040C3303F,SMM02040C3303FB000,https://app.lcm-client.com/belimo/matching/40617-03303/a57dd45b8b8bfbbc6b72118464e896d0,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03303
229,230,Resistors,Vishay,40617-03901,MMA02040C3901F,MMA02040C3901FB000,https://app.lcm-client.com/belimo/matching/40617-03901/a57dd45b8b8bfbbc6b72118464e90c53,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03901
230,231,Resistors,Vishay,47001,MBB02070C1202F,MBB02070C1202FRP00,https://app.lcm-client.com/belimo/matching/47001/c8cb570d5127ae96aaae8eee665a9f99,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47001
231,232,Resistors,Vishay,47002,MBB02070C1000F,MBB02070C1000FRP00,https://app.lcm-client.com/belimo/matching/47002/c8cb570d5127ae96aaae8eee665abee6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47002
232,233,Resistors,Vishay,47004,MBB02070C1804F,MBB02070C1804FRP00,https://app.lcm-client.com/belimo/matching/47004/c8cb570d5127ae96aaae8eee665ae642,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47004
233,234,Resistors,Vishay,47007,MBB02070C3002F,MBB02070C3002FRP00,https://app.lcm-client.com/belimo/matching/47007/c8cb570d5127ae96aaae8eee665b0d45,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47007
234,235,Resistors,Vishay,47008,MBB02070C4701F,MBB02070C4701FRP00,https://app.lcm-client.com/belimo/matching/47008/c8cb570d5127ae96aaae8eee665b34df,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47008
235,236,Resistors,Vishay,47011,MBB02070C1502F,MBB02070C1502FRP00,https://app.lcm-client.com/belimo/matching/47011/c8cb570d5127ae96aaae8eee665b5e12,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47011
236,237,Resistors,Vishay,47012-01001,MBB02070C1001F,MBB02070C1001FRP00,https://app.lcm-client.com/belimo/matching/47012-01001/c8cb570d5127ae96aaae8eee665b7c87,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47012-01001
237,238,Resistors,Vishay,47012-01001,MRS25000C1001F,MRS25000C1001FRP00,https://app.lcm-client.com/belimo/matching/47012-01001/c8cb570d5127ae96aaae8eee665b7ef3,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-01001
238,239,Resistors,Vishay,47012-02371,MBB02070C2371F,MBB02070C2371FRP00,https://app.lcm-client.com/belimo/matching/47012-02371/c8cb570d5127ae96aaae8eee665b92cf,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47012-02371
239,240,Resistors,Vishay,40602-01100,MMB02070C1100F,MMB02070C1100FB700,https://app.lcm-client.com/belimo/matching/40602-01100/ef351458b324e0850a46407492a0f34b,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01100
240,241,Resistors,Vishay,40602-02491,SMM02070C2491F,SMM02070C2491FBP00,https://app.lcm-client.com/belimo/matching/40602-02491/ef351458b324e0850a46407492a32d66,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02491
241,242,Resistors,Vishay,40602-02703,MMB02070C2703F,MMB02070C2703FB700,https://app.lcm-client.com/belimo/matching/40602-02703/ef351458b324e0850a46407492a36b57,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02703
242,243,Resistors,Vishay,40602-02703,SMM02070C2703F,SMM02070C2703FBS00,https://app.lcm-client.com/belimo/matching/40602-02703/ef351458b324e0850a46407492a3748f,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02703
243,244,Resistors,Vishay,40602-03000,MMB02070C3000F,MMB02070C3000FB700,https://app.lcm-client.com/belimo/matching/40602-03000/ef351458b324e0850a46407492a3b4b3,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-03000
244,245,Resistors,Vishay,40602-03000,SMM02070C3000F,SMM02070C3000FBS00,https://app.lcm-client.com/belimo/matching/40602-03000/ef351458b324e0850a46407492a3be47,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-03000
245,246,Resistors,Vishay,40602-03303,MMB02070C3303F,MMB02070C3303FB700,https://app.lcm-client.com/belimo/matching/40602-03303/ef351458b324e0850a46407492a3dded,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-03303
246,247,Resistors,Vishay,40602-03303,SMM02070C3303F,SMM02070C3303FBS00,https://app.lcm-client.com/belimo/matching/40602-03303/ef351458b324e0850a46407492a3e67a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-03303
247,248,Resistors,Vishay,40602-04700,MMB02070C4700F,MMB02070C4700FB700,https://app.lcm-client.com/belimo/matching/40602-04700/ef351458b324e0850a46407492a51eab,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04700
248,249,Resistors,Vishay,40602-04700,SMM02070C4700F,SMM02070C4700FBP00,https://app.lcm-client.com/belimo/matching/40602-04700/ef351458b324e0850a46407492a52341,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04700
249,250,Resistors,Vishay,40617-01108,MMA02040C1108F,MMA02040C1108FB000,https://app.lcm-client.com/belimo/matching/40617-01108/ef351458b324e0850a46407492bb453c,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01108
250,251,Resistors,Vishay,40617-02002,SMM02040C2002F,SMM02040C2002FB000,https://app.lcm-client.com/belimo/matching/40617-02002/ef351458b324e0850a46407492bed203,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02002
251,252,Resistors,Vishay,40617-02008,MMA02040C2008F,MMA02040C2008FB000,https://app.lcm-client.com/belimo/matching/40617-02008/ef351458b324e0850a46407492bf3690,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02008
252,253,Resistors,Vishay,40617-02008,SMM02040C2008F,SMM02040C2008FB000,https://app.lcm-client.com/belimo/matching/40617-02008/ef351458b324e0850a46407492bf3890,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02008
253,254,Resistors,Vishay,40617-02201,MMA02040C2001F,MMA02040C2001FB000,https://app.lcm-client.com/belimo/matching/40617-02201/ef351458b324e0850a46407492bfa0e4,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02201
254,255,Resistors,Vishay,40617-02201,SMM02040C2201F,SMM02040C2201FB000,https://app.lcm-client.com/belimo/matching/40617-02201/ef351458b324e0850a46407492bfaa90,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02201
255,256,Resistors,Vishay,40617-02202,SMM02040C2202F,SMM02040C2202FB000,https://app.lcm-client.com/belimo/matching/40617-02202/ef351458b324e0850a46407492c02755,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02202
256,257,Resistors,Vishay,40617-02402,MMA02040C2402F,MMA02040C2402FB000,https://app.lcm-client.com/belimo/matching/40617-02402/ef351458b324e0850a46407492c086bf,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02402
257,258,Resistors,Vishay,40617-02402,SMM02040C2402F,SMM02040C2402FB000,https://app.lcm-client.com/belimo/matching/40617-02402/ef351458b324e0850a46407492c09313,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02402
258,259,Resistors,Vishay,40617-02408,MMA02040C2408F,MMA02040C2408FB000,https://app.lcm-client.com/belimo/matching/40617-02408/ef351458b324e0850a46407492c0cc99,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02408
259,260,Resistors,Vishay,40862,MBB02070C2203F,MBB02070C2203FRP00,https://app.lcm-client.com/belimo/matching/40862/ef351458b324e0850a46407492c74003,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40862
260,261,Resistors,Vishay,40898,MRS25000C1102F,MRS25000C1102FRP00,https://app.lcm-client.com/belimo/matching/40898/ef351458b324e0850a46407492c879f0,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40898
261,262,Resistors,Vishay,40901,MBB02070C4992F,MBB02070C4992FRP00,https://app.lcm-client.com/belimo/matching/40901/ef351458b324e0850a46407492c8980e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40901
262,263,Resistors,Vishay,40901,MRS25000C4992F,MRS25000C4992FRP00,https://app.lcm-client.com/belimo/matching/40901/ef351458b324e0850a46407492c8a5f3,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40901
263,264,Resistors,Vishay,40913,MBB02070C2201F,MBB02070C2201FRP00,https://app.lcm-client.com/belimo/matching/40913/ef351458b324e0850a46407492c8cd11,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40913
264,265,Resistors,Vishay,40913,MRS25000C2201F,MRS25000C2201FRP00,https://app.lcm-client.com/belimo/matching/40913/ef351458b324e0850a46407492c8ced5,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40913
265,266,Resistors,Vishay,40915,MRS25000C6802F,MRS25000C6802FRP00,https://app.lcm-client.com/belimo/matching/40915/ef351458b324e0850a46407492c8f08b,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40915
266,267,Resistors,Vishay,40919,MRS25000C8201F,MRS25000C8201FRP00,https://app.lcm-client.com/belimo/matching/40919/ef351458b324e0850a46407492c91498,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40919
267,268,Resistors,Vishay,40924,MBB02070C1002F,MBB02070C1002FRP00,https://app.lcm-client.com/belimo/matching/40924/ef351458b324e0850a46407492c95e69,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40924
268,269,Resistors,Vishay,40924,MRS25000C1002F,MRS25000C1002FRP00,https://app.lcm-client.com/belimo/matching/40924/ef351458b324e0850a46407492c9667f,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40924
269,270,Resistors,Vishay,41861-01003,MCS04020D1003B,MCS04020D1003BE500,https://app.lcm-client.com/belimo/matching/41861-01003/ef351458b324e0850a46407492ccbe77,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/41861-01003
270,271,Resistors,Vishay,47012-03830,MRS25000C3830F,MRS25000C3830FRP00,https://app.lcm-client.com/belimo/matching/47012-03830/ef351458b324e0850a46407492d6f482,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-03830
271,272,Resistors,Vishay,47012-04531,MRS25000C4531F,MRS25000C4531FRP00,https://app.lcm-client.com/belimo/matching/47012-04531/ef351458b324e0850a46407492d71357,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-04531
272,273,Resistors,Vishay,47012-06192,MBB02070C6192F,MBB02070C6192FRP00,https://app.lcm-client.com/belimo/matching/47012-06192/ef351458b324e0850a46407492d72930,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47012-06192
273,274,Resistors,Vishay,47012-06192,MRS25000C6192F,MRS25000C6192FRP00,https://app.lcm-client.com/belimo/matching/47012-06192/ef351458b324e0850a46407492d735ec,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-06192
274,275,Resistors,Vishay,47013,MBB02070C5600F,MBB02070C5600FRP00,https://app.lcm-client.com/belimo/matching/47013/ef351458b324e0850a46407492d77c2d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47013
275,276,Resistors,Vishay,47016,MBB02070C2102F,MBB02070C2102FRP00,https://app.lcm-client.com/belimo/matching/47016/ef351458b324e0850a46407492d79a35,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47016
276,277,Resistors,Vishay,47017,MBB02070C2802F,MBB02070C2802FRP00,https://app.lcm-client.com/belimo/matching/47017/ef351458b324e0850a46407492d7bc7e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47017
277,278,Resistors,Vishay,47030,MBB02070C1004F,MBB02070C1004FRP00,https://app.lcm-client.com/belimo/matching/47030/ef351458b324e0850a46407492d7ea45,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47030
278,279,Resistors,Vishay,47035,MBB02070C1802F,MBB02070C1802FRP00,https://app.lcm-client.com/belimo/matching/47035/ef351458b324e0850a46407492d82ea5,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47035
279,280,Resistors,Vishay,47355-01208,MRS25000C1208F,MRS25000C1208FRP00,https://app.lcm-client.com/belimo/matching/47355-01208/a57dd45b8b8bfbbc6b72118464fc8178,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01208
280,281,Resistors,Vishay,47355-01209,MBB02070C1209F,MBB02070C1209FRP00,https://app.lcm-client.com/belimo/matching/47355-01209/a57dd45b8b8bfbbc6b72118464fca02d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01209
281,282,Resistors,Vishay,47355-01209,MRS25000C1209F,MRS25000C1209FRP00,https://app.lcm-client.com/belimo/matching/47355-01209/a57dd45b8b8bfbbc6b72118464fcacd1,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01209
282,283,Resistors,Vishay,40617-01001,MMA02040C1001F,MMA02040C1001FB000,https://app.lcm-client.com/belimo/matching/40617-01001/c8cb570d5127ae96aaae8eee66425d73,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01001
283,284,Resistors,Vishay,40617-01001,SMM02040C1001F,SMM02040C1001FB000,https://app.lcm-client.com/belimo/matching/40617-01001/c8cb570d5127ae96aaae8eee664273bd,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01001
284,285,Resistors,Vishay,40617-04701,MMA02040C4701F,MMA02040C4701FB000,https://app.lcm-client.com/belimo/matching/40617-04701/c8cb570d5127ae96aaae8eee66480626,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04701
285,286,Resistors,Vishay,40617-04701,SMM02040C4701F,SMM02040C4701FB000,https://app.lcm-client.com/belimo/matching/40617-04701/c8cb570d5127ae96aaae8eee66480c80,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04701
286,287,Resistors,Vishay,40617-04708,MMA02040C4708F,MMA02040C4708FB000,https://app.lcm-client.com/belimo/matching/40617-04708/c8cb570d5127ae96aaae8eee66486f7f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04708
287,288,Resistors,Vishay,40617-04708,SMM02040C4708F,SMM02040C4708FB000,https://app.lcm-client.com/belimo/matching/40617-04708/c8cb570d5127ae96aaae8eee6648785d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04708
288,289,Resistors,Vishay,40617-04992,MMA02040C4992F,MMA02040C4992FB000,https://app.lcm-client.com/belimo/matching/40617-04992/c8cb570d5127ae96aaae8eee6648d911,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04992
289,290,Resistors,Vishay,40602-04701,MMB02070C4701F,MMB02070C4701FB700,https://app.lcm-client.com/belimo/matching/40602-04701/ef351458b324e0850a46407492a55a67,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04701
290,291,Resistors,Vishay,40602-09100,SMM02070C9100F,SMM02070C9100FBS00,https://app.lcm-client.com/belimo/matching/40602-09100/ef351458b324e0850a46407492a7a870,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-09100
291,292,Resistors,Vishay,40617-01002,MMA02040C1002F,MMA02040C1002FB000,https://app.lcm-client.com/belimo/matching/40617-01002/ef351458b324e0850a46407492b97ffb,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01002
292,293,Resistors,Vishay,40617-01002,SMM02040C1002F,SMM02040C1002FB000,https://app.lcm-client.com/belimo/matching/40617-01002/ef351458b324e0850a46407492b98f3c,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01002
293,294,Resistors,Vishay,40617-01003,MMA02040C1003F,MMA02040C1003FB000,https://app.lcm-client.com/belimo/matching/40617-01003/ef351458b324e0850a46407492b9d7bd,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01003
294,295,Resistors,Vishay,40617-01003,SMM02040C1003F,SMM02040C1003FB000,https://app.lcm-client.com/belimo/matching/40617-01003/ef351458b324e0850a46407492b9e217,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01003
295,296,Resistors,Vishay,40617-01008,MMA02040C1008F,MMA02040C1008FB000,https://app.lcm-client.com/belimo/matching/40617-01008/ef351458b324e0850a46407492ba4463,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01008
296,297,Resistors,Vishay,40617-01008,SMM02040C1008F,SMM02040C1008FB000,https://app.lcm-client.com/belimo/matching/40617-01008/ef351458b324e0850a46407492ba493f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01008
297,298,Resistors,Vishay,40617-01009,MMA02040C1009F,MMA02040C1009FB000,https://app.lcm-client.com/belimo/matching/40617-01009/ef351458b324e0850a46407492baaa84,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01009
298,299,Resistors,Vishay,40617-01009,SMM02040C1009F,SMM02040C1009FB000,https://app.lcm-client.com/belimo/matching/40617-01009/ef351458b324e0850a46407492bab791,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01009
299,300,Resistors,Vishay,40926,MBB02070C8202F,MBB02070C8202FRP00,https://app.lcm-client.com/belimo/matching/40926/ef351458b324e0850a46407492c97f9f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40926
300,301,Resistors,Vishay,41749-06800,CMB02070X6800G,CMB02070X6800GB700,https://app.lcm-client.com/belimo/matching/41749-06800/ef351458b324e0850a46407492cb3c37,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/41749-06800
301,302,Resistors,Vishay,41770-02401,CRCW12182K40FK,CRCW12182K40FKEK,https://app.lcm-client.com/belimo/matching/41770-02401/ef351458b324e0850a46407492cb4b4c,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41770-02401
302,303,Resistors,Vishay,41770-02401,RCL12182K40FK,RCL12182K40FKEK,https://app.lcm-client.com/belimo/matching/41770-02401/ef351458b324e0850a46407492cb5a01,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41770-02401
303,304,Resistors,Vishay,41770-02709,CRCW121827R0FK,CRCW121827R0FKEK,https://app.lcm-client.com/belimo/matching/41770-02709/ef351458b324e0850a46407492cb724c,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41770-02709
304,305,Resistors,Vishay,41770-02709,RCL121827R0FK,RCL121827R0FKEK,https://app.lcm-client.com/belimo/matching/41770-02709/ef351458b324e0850a46407492cb7c46,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41770-02709
305,306,Resistors,Vishay,41770-09100,CRCW1218910RFK,CRCW1218910RFKEK,https://app.lcm-client.com/belimo/matching/41770-09100/ef351458b324e0850a46407492cb859c,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41770-09100
306,307,Resistors,Vishay,41770-09100,RCL1218910RFK,RCL1218910RFKEK,https://app.lcm-client.com/belimo/matching/41770-09100/ef351458b324e0850a46407492cb8df7,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41770-09100
307,308,Resistors,Vishay,41807-08208,CRCW25128R20JN,CRCW25128R20JNEG,https://app.lcm-client.com/belimo/matching/41807-08208/ef351458b324e0850a46407492cc6d55,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41807-08208
308,309,Resistors,Vishay,41857-04700,CMA02040X4700G,CMA02040X4700GB300,https://app.lcm-client.com/belimo/matching/41857-04700/ef351458b324e0850a46407492cc8de1,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/41857-04700
309,310,Resistors,Vishay,40550,MBB0207IC1203F,MBB0207IC1203FRP00,https://app.lcm-client.com/belimo/matching/40550/ef351458b324e0850a464074929fa8a6,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40550
310,311,Resistors,Vishay,40550,MRS25000C1203F,MRS25000C1203FRP00,https://app.lcm-client.com/belimo/matching/40550/ef351458b324e0850a464074929faa94,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40550
311,312,Resistors,Vishay,40602-01001,MMB02070C1001F,MMB02070C1001FB700,https://app.lcm-client.com/belimo/matching/40602-01001/ef351458b324e0850a464074929fd84b,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01001
312,313,Resistors,Vishay,40602-01001,SMM02070C1001F,SMM02070C1001FBS00,https://app.lcm-client.com/belimo/matching/40602-01001/ef351458b324e0850a464074929fe654,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01001
313,314,Resistors,Vishay,40602-01002,MMB02070C1002F,MMB02070C1002FB700,https://app.lcm-client.com/belimo/matching/40602-01002/ef351458b324e0850a46407492a00ad0,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01002
314,315,Resistors,Vishay,40602-01002,SMM02070C1002F,SMM02070C1002FBS00,https://app.lcm-client.com/belimo/matching/40602-01002/ef351458b324e0850a46407492a00ede,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01002
315,316,Resistors,Vishay,40602-01004,MMB02070C1004F,MMB02070C1004FB700,https://app.lcm-client.com/belimo/matching/40602-01004/ef351458b324e0850a46407492a03473,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01004
316,317,Resistors,Vishay,40602-01004,SMM02070C1004F,SMM02070C1004FBS00,https://app.lcm-client.com/belimo/matching/40602-01004/ef351458b324e0850a46407492a03d9c,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01004
317,318,Resistors,Vishay,40861,MBB02070C2202F,MBB02070C2202FRP00,https://app.lcm-client.com/belimo/matching/40861/ef351458b324e0850a46407492c733f0,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40861
318,319,Resistors,Vishay,40861,MRS25000C2202F,MRS25000C2202FRP00,https://app.lcm-client.com/belimo/matching/40861/ef351458b324e0850a46407492c73735,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40861
319,320,Resistors,Vishay,47038,MBB02070C1103F,MBB02070C1103FRP00,https://app.lcm-client.com/belimo/matching/47038/ef351458b324e0850a46407492d84967,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47038
320,321,Resistors,Vishay,47355-05762,MRS25000C5762F,MRS25000C5762FRP00,https://app.lcm-client.com/belimo/matching/47355-05762/ef351458b324e0850a46407492dceb65,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-05762
321,322,Resistors,Vishay,47355-07503,MBB02070C7503F,MBB02070C7503FRP00,https://app.lcm-client.com/belimo/matching/47355-07503/ef351458b324e0850a46407492dd0a2c,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-07503
322,323,Resistors,Vishay,47355-07503,MRS25000C7503F,MRS25000C7503FRP00,https://app.lcm-client.com/belimo/matching/47355-07503/ef351458b324e0850a46407492dd1062,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-07503
323,324,Resistors,Vishay,47355-09102,MBB02070C9102F,MBB02070C9102FRP00,https://app.lcm-client.com/belimo/matching/47355-09102/ef351458b324e0850a46407492dd3bb8,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-09102
324,325,Resistors,Vishay,47355-09102,MRS25000C9102F,MRS25000C9102FRP00,https://app.lcm-client.com/belimo/matching/47355-09102/ef351458b324e0850a46407492dd4037,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-09102
325,326,Resistors,Vishay,47355-42200,MBB02070C2200F,MBB02070C2200FRP00,https://app.lcm-client.com/belimo/matching/47355-42200/ef351458b324e0850a46407492dd65ba,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-42200
326,327,Resistors,Vishay,47355-42200,MRS25000C2200F,MRS25000C2200FRP00,https://app.lcm-client.com/belimo/matching/47355-42200/ef351458b324e0850a46407492dd696b,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-42200
327,328,Resistors,Vishay,40617-02408,SMM02040C2408F,SMM02040C2408FB000,https://app.lcm-client.com/belimo/matching/40617-02408/ef351458b324e0850a46407492c0d2b0,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02408
328,329,Resistors,Vishay,40852,MBB02070C4702F,MBB02070C4702FRP00,https://app.lcm-client.com/belimo/matching/40852/ef351458b324e0850a46407492c6d60f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40852
329,330,Resistors,Vishay,40852,MRS25000C4702F,MRS25000C4702FRP00,https://app.lcm-client.com/belimo/matching/40852/ef351458b324e0850a46407492c6e1c7,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40852
330,331,Resistors,Vishay,40853,MBB02070C5902F,MBB02070C5902FRP00,https://app.lcm-client.com/belimo/matching/40853/ef351458b324e0850a46407492c703d9,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40853
331,332,Resistors,Vishay,40853,MRS25000C5902F,MRS25000C5902FRP00,https://app.lcm-client.com/belimo/matching/40853/ef351458b324e0850a46407492c70733,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40853
332,333,Resistors,Vishay,40860,MBB02070C3001F,MBB02070C3001FRP00,https://app.lcm-client.com/belimo/matching/40860/ef351458b324e0850a46407492c71d0c,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40860
333,334,Resistors,Vishay,40860,MRS25000C3001F,MRS25000C3001FRP00,https://app.lcm-client.com/belimo/matching/40860/ef351458b324e0850a46407492c72721,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40860
334,335,Resistors,Vishay,47355-44700,MRS25000C4700F,MRS25000C4700FRP00,https://app.lcm-client.com/belimo/matching/47355-44700/ef351458b324e0850a46407492dd925e,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-44700
335,336,Resistors,TT Electronics,40617-01204,WRM0204C1M2FI,WRM0204C-1M2FI,https://app.lcm-client.com/belimo/matching/40617-01204/a57dd45b8b8bfbbc6b72118464e1e61b,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01204
336,337,Resistors,TT Electronics,40617-01211,WRM0204C1K21FI,WRM0204C-470RFI,https://app.lcm-client.com/belimo/matching/40617-01211/a57dd45b8b8bfbbc6b72118464e2c13b,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01211
337,338,Resistors,TT Electronics,40617-01800,WRM0204C180RFI,WRM0204C180RFI,https://app.lcm-client.com/belimo/matching/40617-01800/a57dd45b8b8bfbbc6b72118464e475a3,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01800
338,339,Resistors,TT Electronics,40617-01801,WRM0204C1K8FI,WRM0204C-1K8FI,https://app.lcm-client.com/belimo/matching/40617-01801/a57dd45b8b8bfbbc6b72118464e4ef28,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01801
339,340,Resistors,TT Electronics,40617-03303,WRM0204C330KFI,WRM0204C-330KFI,https://app.lcm-client.com/belimo/matching/40617-03303/a57dd45b8b8bfbbc6b72118464e87aed,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03303
340,341,Resistors,TT Electronics,40617-04700,WRM0204C470RFI,WRM0204C-470RFI,https://app.lcm-client.com/belimo/matching/40617-04700/a57dd45b8b8bfbbc6b72118464ea09cb,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04700
341,342,Resistors,TT Electronics,40615-02002,PCF1206-R-20KB,PCF1206R-20KBT1 ,https://app.lcm-client.com/belimo/matching/40615-02002/c8cb570d5127ae96aaae8eee663f84a2,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02002
342,343,Resistors,TT Electronics,40615-02202,PCF1206-R-22KB,PCF1206R-22KBT1,https://app.lcm-client.com/belimo/matching/40615-02202/c8cb570d5127ae96aaae8eee663fadb4,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02202
343,344,Resistors,TT Electronics,40615-02372,PCF1206-R-56KB,PCF1206R-56KBT1,https://app.lcm-client.com/belimo/matching/40615-02202/c8cb570d5127ae96aaae8eee663fadb4,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02372
344,345,Resistors,TT Electronics,40615-02402,PCF1206-R-24KB,PCF1206R-24KBT1,https://app.lcm-client.com/belimo/matching/40615-02402/c8cb570d5127ae96aaae8eee664021c3,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02402
345,346,Resistors,TT Electronics,40615-02492,PCF1206-R-24K9B,PCF1206R-24K9BT1,https://app.lcm-client.com/belimo/matching/40615-02492/c8cb570d5127ae96aaae8eee66405af8,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02492
346,347,Resistors,TT Electronics,40615-02552,PCF1206-R-25K5B,PCF1206R-25K5BT1,https://app.lcm-client.com/belimo/matching/40615-02552/c8cb570d5127ae96aaae8eee664087ff,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02552
347,348,Resistors,TT Electronics,40615-02702,PCF1206-R-27KB,PCF1206R-27KBT1,https://app.lcm-client.com/belimo/matching/40615-02702/c8cb570d5127ae96aaae8eee6640c2eb,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02702
348,349,Resistors,TT Electronics,40615-03922,PCF1206-R-39K2B,PCF1206R-39K2BT1,https://app.lcm-client.com/belimo/matching/40615-03922/c8cb570d5127ae96aaae8eee6640ff82,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-03922
349,350,Resistors,TT Electronics,40615-06812,PCF1206-R-68K1B,PCF1206R-68K1BT1,https://app.lcm-client.com/belimo/matching/40615-06812/c8cb570d5127ae96aaae8eee6641618e,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-06812
350,351,Resistors,TT Electronics,40615-06982,PCF1206-R-69K8B,PCF1206R-69K8BT1,https://app.lcm-client.com/belimo/matching/40615-06982/c8cb570d5127ae96aaae8eee66419452,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-06982
351,352,Resistors,TT Electronics,40615-08201,PCF1206-R-8K2B,PCF1206R-8K2BT1,https://app.lcm-client.com/belimo/matching/40615-08201/c8cb570d5127ae96aaae8eee6641c3da,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-08201
352,353,Resistors,TT Electronics,40617-01001,WRM0204C1KFI,WRM0204C-1K0FI,https://app.lcm-client.com/belimo/matching/40617-01001/c8cb570d5127ae96aaae8eee66425552,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01001
353,354,Resistors,TT Electronics,40617-04701,WRM0204C4K7FI,WRM0204C-4K7FI,https://app.lcm-client.com/belimo/matching/40617-04701/c8cb570d5127ae96aaae8eee6647ff02,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04701
354,355,Resistors,TT Electronics,40617-04992,WRM0204C49K9FI,WRM0204C-49K9FI,https://app.lcm-client.com/belimo/matching/40617-04992/c8cb570d5127ae96aaae8eee6648bd7f,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04992
355,356,Resistors,TT Electronics,40617-05109,WRM0204C51RFI,WRM0204C-51RFI,https://app.lcm-client.com/belimo/matching/40617-05109/c8cb570d5127ae96aaae8eee664944ae,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-05109
356,357,Resistors,TT Electronics,40617-05601,WRM0204C5K6FI,WRM0204C-5K6FI,https://app.lcm-client.com/belimo/matching/40617-05601/c8cb570d5127ae96aaae8eee6649b46b,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-05601
357,358,Resistors,TT Electronics,40617-06800,WRM0204C680RFI,WRM0204C-680RFI,https://app.lcm-client.com/belimo/matching/40617-06800/c8cb570d5127ae96aaae8eee664a97c6,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06800
358,359,Resistors,TT Electronics,40617-06801,WRM0204C6K8FI,WRM0204C-6K8FI,https://app.lcm-client.com/belimo/matching/40617-06801/c8cb570d5127ae96aaae8eee664b8a2f,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06801
359,360,Resistors,TT Electronics,40617-07502,WRM0204C75KFI,WRM0204C-75KFI,https://app.lcm-client.com/belimo/matching/40617-07502/c8cb570d5127ae96aaae8eee664c65a4,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-07502
360,361,Resistors,TT Electronics,40602-01001,WRM0207HPC-1K0F,WRM0207HPC-1K0FT2,https://app.lcm-client.com/belimo/matching/40602-01001/ef351458b324e0850a464074929fc757,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01001
361,362,Resistors,TT Electronics,40602-01002,WRM0207HPC-10KF,WRM0207HPC-10KFT2,https://app.lcm-client.com/belimo/matching/40602-01002/ef351458b324e0850a46407492a0014a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01002
362,363,Resistors,TT Electronics,40602-01004,WRM0207HPC-1M0F,WRM0207HPC-1M0FT2,https://app.lcm-client.com/belimo/matching/40602-01004/ef351458b324e0850a46407492a0258e,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01004
363,364,Resistors,TT Electronics,40602-01100,WRM0207HPC-110RF,WRM0207HPC-110RFT2,https://app.lcm-client.com/belimo/matching/40602-01100/ef351458b324e0850a46407492a0d9d9,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01100
364,365,Resistors,TT Electronics,40602-01501,WRM0207HPC-1K5F,WRM0207HPC-1K5FT2,https://app.lcm-client.com/belimo/matching/40602-01501/ef351458b324e0850a46407492a118c9,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01501
365,366,Resistors,TT Electronics,40602-01503,WRM0207HPC-150KF,WRM0207HPC-150KFT2,https://app.lcm-client.com/belimo/matching/40602-01503/ef351458b324e0850a46407492a15498,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01503
366,367,Resistors,TT Electronics,40602-01801,WRM0207HPC-1K8F,WRM0207HPC-1K8FT2,https://app.lcm-client.com/belimo/matching/40602-01801/ef351458b324e0850a46407492a19513,ok,Automotive,Yes,y,Requires Update,https://app.lcm-client.com/belimo/part/40602-01801
367,368,Resistors,TT Electronics,40602-02201,WRM0207HPC-2K2F,WRM0207HPC-2K2FT2,https://app.lcm-client.com/belimo/matching/40602-02201/ef351458b324e0850a46407492a1c7a2,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02201
368,369,Resistors,TT Electronics,40602-02203,WRM0207HPC-220KF,WRM0207HPC-220KFT2,https://app.lcm-client.com/belimo/matching/40602-02203/ef351458b324e0850a46407492a208f7,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02203
369,370,Resistors,TT Electronics,40602-02401,WRM0207HPC-2K4F,WRM0207HPC-2K4FT2,https://app.lcm-client.com/belimo/matching/40602-02401/ef351458b324e0850a46407492a27710,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02401
370,371,Resistors,TT Electronics,40602-02402,WRM0207HPC-24KF,WRM0207HPC-24KFT2,https://app.lcm-client.com/belimo/matching/40602-02402/ef351458b324e0850a46407492a2b96e,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02402
371,372,Resistors,TT Electronics,40602-02403,WRM0207HPC-240KF,WRM0207HPC-240KFT2,https://app.lcm-client.com/belimo/matching/40602-02403/ef351458b324e0850a46407492a2ea6d,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02403
372,373,Resistors,TT Electronics,40602-02491,WRM0207HPC-2K49F,WRM0207HPC-2K49FT2,https://app.lcm-client.com/belimo/matching/40602-02491/ef351458b324e0850a46407492a30f58,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02491
373,374,Resistors,TT Electronics,40602-02703,WRM0207HPC-270KF,WRM0207HPC-270KFT2,https://app.lcm-client.com/belimo/matching/40602-02703/ef351458b324e0850a46407492a35ee4,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02703
374,375,Resistors,TT Electronics,40602-03000,WRM0207HPC-300RF,WRM0207HPC-300RFT2,https://app.lcm-client.com/belimo/matching/40602-03000/ef351458b324e0850a46407492a39ce1,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-03000
375,376,Resistors,TT Electronics,40602-03303,WRM0207HPC-330KF,WRM0207HPC-330KFT2,https://app.lcm-client.com/belimo/matching/40602-03303/ef351458b324e0850a46407492a3cdcf,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-03303
376,377,Resistors,TT Electronics,40602-04700,WRM0207HPC-470RF,WRM0207HPC-470RFT2,https://app.lcm-client.com/belimo/matching/40602-04700/ef351458b324e0850a46407492a51cfd,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04700
377,378,Resistors,TT Electronics,40602-04701,WRM0207HPC-4K7F,WRM0207HPC-4K7FT2,https://app.lcm-client.com/belimo/matching/40602-04701/ef351458b324e0850a46407492a54e73,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04701
378,379,Resistors,TT Electronics,40602-04702,WRM0207HPC-47KF,WRM0207HPC-47KFT2,https://app.lcm-client.com/belimo/matching/40602-04702/ef351458b324e0850a46407492a58a5c,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04702
379,380,Resistors,TT Electronics,40602-04703,WRM0207HPC-470KF,WRM0207HPC-470KFT2,https://app.lcm-client.com/belimo/matching/40602-04703/ef351458b324e0850a46407492a5b923,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04703
380,381,Resistors,TT Electronics,40602-05100,WRM0207HPC-510RF,WRM0207HPC-510RFT2,https://app.lcm-client.com/belimo/matching/40602-05100/ef351458b324e0850a46407492a6084d,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05100
381,382,Resistors,TT Electronics,40602-05603,WRM0207HPC-560KF,WRM0207HPC-560KFT2,https://app.lcm-client.com/belimo/matching/40602-05603/ef351458b324e0850a46407492a64c72,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05603
382,383,Resistors,TT Electronics,40602-06209,WRM0207HPC-62RF,WRM0207HPC-62RFT2,https://app.lcm-client.com/belimo/matching/40602-06209/ef351458b324e0850a46407492a68b65,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-06209
383,384,Resistors,TT Electronics,40602-07502,WRM0207HPC-75KF,WRM0207HPC-75KFT2,https://app.lcm-client.com/belimo/matching/40602-07502/ef351458b324e0850a46407492a6d6ab,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-07502
384,385,Resistors,TT Electronics,40602-08063,WRM0207HPC-806KF,WRM0207HPC-806KFT2,https://app.lcm-client.com/belimo/matching/40602-08063/ef351458b324e0850a46407492a71c92,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08063
385,386,Resistors,TT Electronics,40602-08202,WRM0207HPC-82KF,WRM0207HPC-82KFT2,https://app.lcm-client.com/belimo/matching/40602-08202/ef351458b324e0850a46407492a75ccf,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08202
386,387,Resistors,TT Electronics,40602-09100,WRM0207HPC-910RF,WRM0207HPC-910RFT2,https://app.lcm-client.com/belimo/matching/40602-09100/ef351458b324e0850a46407492a79fec,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-09100
387,388,Resistors,TT Electronics,40615-01002,PCF1206-R-10KB,PCF1206R-10KBT1,https://app.lcm-client.com/belimo/matching/40615-01002/ef351458b324e0850a46407492b6a626,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-01002
388,389,Resistors,TT Electronics,40615-01022,PCF1206-R-10K2B,PCF1206R-10K2BT1,https://app.lcm-client.com/belimo/matching/40615-01022/ef351458b324e0850a46407492b6e25d,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-01022
389,390,Resistors,TT Electronics,40615-01213,PCF1206-R-121KB,PCF1206R-121KBT1,https://app.lcm-client.com/belimo/matching/40615-01213/ef351458b324e0850a46407492b72657,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-01213
390,391,Resistors,TT Electronics,40615-01822,PCF1206-R-18K2B,PCF1206R-18K2BT1,https://app.lcm-client.com/belimo/matching/40615-01822/ef351458b324e0850a46407492b751d0,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-01822
391,392,Resistors,TT Electronics,40617-01002,WRM0204C10KFI,WRM0204C-10KFI,https://app.lcm-client.com/belimo/matching/40617-01002/ef351458b324e0850a46407492b965cd,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01002
392,393,Resistors,TT Electronics,40617-01003,WRM0204C100KFI,WRM0204C-100KFI,https://app.lcm-client.com/belimo/matching/40617-01003/ef351458b324e0850a46407492b9d08e,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01003
393,394,Resistors,TT Electronics,40617-01108,WRM0204C1R1FI,WRM0204C-1R1FI,https://app.lcm-client.com/belimo/matching/40617-01108/ef351458b324e0850a46407492bb284b,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01108
394,395,Resistors,TT Electronics,40617-01201,WRM0204C1K2FI,WRM0204C-1K2FI,https://app.lcm-client.com/belimo/matching/40617-01201/ef351458b324e0850a46407492bb9190,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01201
395,396,Resistors,TT Electronics,40617-01202,WRM0204C12KFI,WRM0204C-12KFI,https://app.lcm-client.com/belimo/matching/40617-01202/ef351458b324e0850a46407492bbe280,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01202
396,397,Resistors,TT Electronics,40617-02002,WRM0204C20KFI,WRM0204C-20KFI,https://app.lcm-client.com/belimo/matching/40617-02002/ef351458b324e0850a46407492beb216,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02002
397,398,Resistors,TT Electronics,40617-02201,WRM0204C2K2FI,WRM0204C-2K2FI,https://app.lcm-client.com/belimo/matching/40617-02201/ef351458b324e0850a46407492bf96d3,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02201
398,399,Resistors,TT Electronics,40617-02202,WRM0204C22KFI,WRM0204C-22KFI,https://app.lcm-client.com/belimo/matching/40617-02202/ef351458b324e0850a46407492c0070f,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02202
399,400,Resistors,TT Electronics,40617-02402,WRM0204C24KFI,WRM0204C-24KFI,https://app.lcm-client.com/belimo/matching/40617-02402/ef351458b324e0850a46407492c077bb,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02402
400,401,Resistors,TT Electronics,41746-02007,LR2512-R20F,LR2512-R20FT1,https://app.lcm-client.com/belimo/matching/41746-02007/ef351458b324e0850a46407492cb1266,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41746-02007
401,402,Resistors,TT Electronics,41801-00057,LRMAP2512-R005F,LRMAP2512-R005FT4,https://app.lcm-client.com/belimo/matching/41801-00057/ef351458b324e0850a46407492cc617c,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/41801-00057
402,403,Resistors,TT Electronics,41808-01008,CHP1/8501R00J,CHP1/8501R00JLF,https://app.lcm-client.com/belimo/matching/41808-01008/ef351458b324e0850a46407492cc74b7,ok,STD,Yes,y,Obsolete,https://app.lcm-client.com/belimo/part/41808-01008
403,404,Resistors,Panasonic,41911-03001,ERJ2RKF3001,ERJ2RKF3001X,https://app.lcm-client.com/belimo/matching/41911-03001/01c0aaf7f54e36ff3a021a81ca303251,ok,Automotive,Exption,n,,
404,405,Resistors,Panasonic,41911-03301,ERJ2RKF3301,ERJ2RKF3301X,https://app.lcm-client.com/belimo/matching/41911-03301/01c0aaf7f54e36ff3a021a81ca30648f,ok,Automotive,Exption,n,,
405,406,Resistors,Panasonic,41911-05600,ERJ2RKF5600,ERJ2RKF5600X,https://app.lcm-client.com/belimo/matching/41911-05600/215374c1de05d3324b68f967dc5023c8,ok,Automotive,Exption,n,,
406,407,Resistors,Panasonic,41911-07502,ERJ2RKF7502,ERJ2RKF7502X,https://app.lcm-client.com/belimo/matching/41911-07502/215374c1de05d3324b68f967dc50b5a8,ok,Automotive,Exption,n,,
407,408,Resistors,Panasonic,41911-08203,ERJ2RKF8203,ERJ2RKF8203X,https://app.lcm-client.com/belimo/matching/41911-08203/215374c1de05d3324b68f967dc50e5fb,ok,Automotive,Exption,n,,
408,409,Resistors,Panasonic,41911-01103,ERJ2RKF1103,ERJ2RKF1103X,https://app.lcm-client.com/belimo/matching/41911-01103/46de94ed90f9f5ccd2b17e508cfa275c,ok,Automotive,Exption,n,,
409,410,Resistors,Panasonic,41911-01200,ERJ2RKF1200,ERJ2RKF1200X,https://app.lcm-client.com/belimo/matching/41911-01200/46de94ed90f9f5ccd2b17e508cfa4588,ok,Automotive,Exption,n,,
410,411,Resistors,Panasonic,41911-01302,ERJ2RKF1302,ERJ2RKF1302X,https://app.lcm-client.com/belimo/matching/41911-01302/46de94ed90f9f5ccd2b17e508cfa5fef,ok,Automotive,Exption,n,,
411,412,Resistors,Panasonic,41911-01303,ERJ2RKF1303,ERJ2RKF1303X,https://app.lcm-client.com/belimo/matching/41911-01303/46de94ed90f9f5ccd2b17e508cfa88df,ok,Automotive,Exption,n,,
412,413,Resistors,Panasonic,40613-01001,ERA6AEB102,ERA6AEB102V,https://app.lcm-client.com/belimo/matching/40613-01001/a57dd45b8b8bfbbc6b72118464d72071,ok,Automotive,Exption,n,,
413,414,Resistors,Panasonic,40613-01002,ERA6AEB103,ERA6AEB103V,https://app.lcm-client.com/belimo/matching/40613-01002/a57dd45b8b8bfbbc6b72118464d74c0c,ok,Automotive,Exption,n,,
414,415,Resistors,Panasonic,40613-01152,ERA6AEB1153,ERA6AEB1153V,https://app.lcm-client.com/belimo/matching/40613-01152/a57dd45b8b8bfbbc6b72118464d773c4,ok,Automotive,Exption,n,,
415,416,Resistors,Panasonic,40613-01271,ERA6AEB1271,ERA6AEB1271V,https://app.lcm-client.com/belimo/matching/40613-01271/a57dd45b8b8bfbbc6b72118464d7a262,ok,Automotive,Exption,n,,
416,417,Resistors,Panasonic,40613-01502,ERA6AEB1502,ERA6AEB1502V,https://app.lcm-client.com/belimo/matching/40613-01502/a57dd45b8b8bfbbc6b72118464d7ef05,ok,Automotive,Exption,n,,
417,418,Resistors,Panasonic,40613-01503,ERA6AEB1503,ERA6AEB1503V,https://app.lcm-client.com/belimo/matching/40613-01503/a57dd45b8b8bfbbc6b72118464d802b3,ok,Automotive,Exption,n,,
418,419,Resistors,Panasonic,40613-01602,ERA6AEB163,ERA6AEB163V,https://app.lcm-client.com/belimo/matching/40613-01602/a57dd45b8b8bfbbc6b72118464d8202c,ok,Automotive,Exption,n,,
419,420,Resistors,Panasonic,40613-02001,ERA6AEB2001,ERA6AEB2001V,https://app.lcm-client.com/belimo/matching/40613-02001/a57dd45b8b8bfbbc6b72118464d85572,ok,Automotive,Exption,n,,
420,421,Resistors,Panasonic,40613-02002,ERA6AEB2002,ERA6AEB2002V,https://app.lcm-client.com/belimo/matching/40613-02002/a57dd45b8b8bfbbc6b72118464d8777d,ok,Automotive,Exption,n,,
421,422,Resistors,Panasonic,40613-02432,ERA6AEB2431,ERA6AEB2431V,https://app.lcm-client.com/belimo/matching/40613-02432/a57dd45b8b8bfbbc6b72118464d8af94,ok,Automotive,Exption,n,,
422,423,Resistors,Panasonic,40613-03321,ERA6AEB3321,ERA6AEB3321V,https://app.lcm-client.com/belimo/matching/40613-03321/a57dd45b8b8bfbbc6b72118464d8e08b,ok,Automotive,Exption,n,,
423,424,Resistors,Panasonic,40613-03601,ERA6AEB362,ERA6AEB362V,https://app.lcm-client.com/belimo/matching/40613-03601/a57dd45b8b8bfbbc6b72118464d8fefd,ok,Automotive,Exption,n,,
424,425,Resistors,Panasonic,40613-04022,ERA6AEB4022,ERA6AEB4022V,https://app.lcm-client.com/belimo/matching/40613-04022/a57dd45b8b8bfbbc6b72118464da2fbb,ok,Automotive,Exption,n,,
425,426,Resistors,Panasonic,40613-06802,ERA6AEB683,ERA6AEB683V,https://app.lcm-client.com/belimo/matching/40613-06802/a57dd45b8b8bfbbc6b72118464da4c84,ok,Automotive,Exption,n,,
426,427,Resistors,Panasonic,40613-07871,ERA6AEB7871,ERA6AEB7871V,https://app.lcm-client.com/belimo/matching/40613-07871/a57dd45b8b8bfbbc6b72118464da5af6,ok,Automotive,Exption,n,,
427,428,Resistors,Panasonic,40613-09762,ERA6AEB9762,ERA6AEB9762V,https://app.lcm-client.com/belimo/matching/40613-09762/a57dd45b8b8bfbbc6b72118464da891e,ok,Automotive,Exption,n,,
428,429,Resistors,Panasonic,41911-01003,ERJ2RKF1003,ERJ2RKF1003X,https://app.lcm-client.com/belimo/matching/41911-01003/a57dd45b8b8bfbbc6b72118464f07eb4,ok,Automotive,Exption,n,,
429,430,Resistors,Panasonic,41911-01102,ERJ2RKF1102,ERJ2RKF1102X,https://app.lcm-client.com/belimo/matching/41911-01102/a57dd45b8b8bfbbc6b72118464f0d155,ok,Automotive,Exption,n,,
430,431,Resistors,Panasonic,41911-01202,ERJ2RKF1202,ERJ2RKF1202X,https://app.lcm-client.com/belimo/matching/41911-01202/a57dd45b8b8bfbbc6b72118464f1003f,ok,Automotive,Exption,n,,
431,432,Resistors,Panasonic,41911-01203,ERJ2RKF1203,ERJ2RKF1203X,https://app.lcm-client.com/belimo/matching/41911-01203/a57dd45b8b8bfbbc6b72118464f11b46,ok,Automotive,Exption,n,,
432,433,Resistors,Panasonic,41911-01402,ERJ2RKF1402,ERJ2RKF1402X,https://app.lcm-client.com/belimo/matching/41911-01402/a57dd45b8b8bfbbc6b72118464f1429e,ok,Automotive,Exption,n,,
433,434,Resistors,Panasonic,41911-01502,ERJ2RKF1502,ERJ2RKF1502X,https://app.lcm-client.com/belimo/matching/41911-01502/a57dd45b8b8bfbbc6b72118464f179f5,ok,Automotive,Exption,n,,
434,435,Resistors,Panasonic,41911-01503,ERJ2RKF1503,ERJ2RKF1503X,https://app.lcm-client.com/belimo/matching/41911-01503/a57dd45b8b8bfbbc6b72118464f1b159,ok,Automotive,Exption,n,,
435,436,Resistors,Panasonic,41911-01802,ERJ2RKF1802,ERJ2RKF1802X,https://app.lcm-client.com/belimo/matching/41911-01802/a57dd45b8b8bfbbc6b72118464f1e1f1,ok,Automotive,Exption,n,,
436,437,Resistors,Panasonic,41911-01803,ERJ2RKF1803,ERJ2RKF1803X,https://app.lcm-client.com/belimo/matching/41911-01803/a57dd45b8b8bfbbc6b72118464f210cd,ok,Automotive,Exption,n,,
437,438,Resistors,Panasonic,41911-02003,ERJ2RKF2003,ERJ2RKF2003X,https://app.lcm-client.com/belimo/matching/41911-02003/a57dd45b8b8bfbbc6b72118464f2425a,ok,Automotive,Exption,n,,
438,439,Resistors,Panasonic,41911-02200,ERJ2RKF2200,ERJ2RKF2200X,https://app.lcm-client.com/belimo/matching/41911-02200/a57dd45b8b8bfbbc6b72118464f2631d,ok,Automotive,Exption,n,,
439,440,Resistors,Panasonic,41911-02201,ERJ2RKF2201,ERJ2RKF2201X,https://app.lcm-client.com/belimo/matching/41911-02201/a57dd45b8b8bfbbc6b72118464f28fbc,ok,Automotive,Exption,n,,
440,441,Resistors,Panasonic,41911-02202,ERJ2RKF2202,ERJ2RKF2202X,https://app.lcm-client.com/belimo/matching/41911-02202/a57dd45b8b8bfbbc6b72118464f2ad6b,ok,Automotive,Exption,n,,
441,442,Resistors,Panasonic,41911-02203,ERJ2RKF2203,ERJ2RKF2203X,https://app.lcm-client.com/belimo/matching/41911-02203/a57dd45b8b8bfbbc6b72118464f2d9da,ok,Automotive,Exption,n,,
442,443,Resistors,Panasonic,47690-00001,ERJ-6ENF1003V,ERJ6ENF1003V,https://app.lcm-client.com/belimo/matching/47690-00001/a57dd45b8b8bfbbc6b72118464fe67b5,ok,Automotive,Exption,n,,
443,444,Resistors,Panasonic,47692-00001,ERJ-6ENF1783V,ERJ6ENF1783V,https://app.lcm-client.com/belimo/matching/47692-00001/a57dd45b8b8bfbbc6b72118464fe776d,ok,Automotive,Exption,n,,
444,445,Resistors,Panasonic,47694-00001,ERJ-6ENF4753V,ERJ6ENF4753V,https://app.lcm-client.com/belimo/matching/47694-00001/a57dd45b8b8bfbbc6b72118464fe8343,ok,Automotive,Exption,n,,
445,446,Resistors,Panasonic,47695-00001,ERJ-6ENF6493V,ERJ6ENF6493V,https://app.lcm-client.com/belimo/matching/47695-00001/a57dd45b8b8bfbbc6b72118464fe92ca,ok,Automotive,Exption,n,,
446,447,Resistors,Panasonic,47700-00001,ERJ-6ENF1000V,ERJ6ENF1000V,https://app.lcm-client.com/belimo/matching/47700-00001/a57dd45b8b8bfbbc6b72118464fee6c1,ok,Automotive,Exption,n,,
447,448,Resistors,Panasonic,47703-00001,ERJ-6ENF9090V,ERJ6ENF9090V,https://app.lcm-client.com/belimo/matching/47703-00001/a57dd45b8b8bfbbc6b72118464ff302b,ok,Automotive,Exption,n,,
448,449,Resistors,Panasonic,47704-00001,ERJ-8ENF1001V,ERJ8ENF1001V,https://app.lcm-client.com/belimo/matching/47704-00001/a57dd45b8b8bfbbc6b72118464ff3d4c,ok,Automotive,Exption,y,NRND,
449,450,Resistors,Panasonic,47716-00001,ERJ-8ENF62R0V,ERJ8ENF62R0V,https://app.lcm-client.com/belimo/matching/47716-00001/a57dd45b8b8bfbbc6b72118464ffbddb,ok,Automotive,Exption,y,NRND,
450,451,Resistors,Panasonic,47720-00001,ERJ-8ENF4990V,ERJ8ENF4990V,https://app.lcm-client.com/belimo/matching/47720-00001/a57dd45b8b8bfbbc6b72118464ffd9f2,ok,Automotive,Exption,y,NRND,
451,452,Resistors,Panasonic,41911-02400,ERJ2RKF2400,ERJ2RKF2400x,https://app.lcm-client.com/belimo/matching/41911-02400/c8cb570d5127ae96aaae8eee6653b5ee,ok,Automotive,Exption,n,,
452,453,Resistors,Panasonic,41911-02402,ERJ2RKF2402,ERJ2RKF2402X,https://app.lcm-client.com/belimo/matching/41911-02402/c8cb570d5127ae96aaae8eee6653e56f,ok,Automotive,Exption,n,,
453,454,Resistors,Panasonic,41911-02701,ERJ2RKF2701,ERJ2RKF2701X,https://app.lcm-client.com/belimo/matching/41911-02701/c8cb570d5127ae96aaae8eee66541a81,ok,Automotive,Exption,n,,
454,455,Resistors,Panasonic,41911-02702,ERJ2RKF2702,ERJ2RKF2702X,https://app.lcm-client.com/belimo/matching/41911-02702/c8cb570d5127ae96aaae8eee66543ebe,ok,Automotive,Exption,n,,
455,456,Resistors,Panasonic,41911-03002,ERJ2RKF3002,ERJ2RKF3002X,https://app.lcm-client.com/belimo/matching/41911-03002/c8cb570d5127ae96aaae8eee6654c2de,ok,Automotive,Exption,n,,
456,457,Resistors,Panasonic,41911-03003,ERJ2RKF3003,ERJ2RKF3003X,https://app.lcm-client.com/belimo/matching/41911-03003/c8cb570d5127ae96aaae8eee6655059a,ok,Automotive,Exption,n,,
457,458,Resistors,Panasonic,41911-03300,ERJ2RKF3300,ERJ2RKF3300X,https://app.lcm-client.com/belimo/matching/41911-03300/c8cb570d5127ae96aaae8eee66553a8c,ok,Automotive,Exption,n,,
458,459,Resistors,Panasonic,41911-03302,ERJ2RKF3302,ERJ2RKF3302X,https://app.lcm-client.com/belimo/matching/41911-03302/c8cb570d5127ae96aaae8eee66555ae8,ok,Automotive,Exption,n,,
459,460,Resistors,Panasonic,41911-03303,ERJ2RKF3303,ERJ2RKF3303X,https://app.lcm-client.com/belimo/matching/41911-03303/c8cb570d5127ae96aaae8eee665598e9,ok,Automotive,Exption,n,,
460,461,Resistors,Panasonic,41911-03900,ERJ2RKF3900,ERJ2RKF3900X,https://app.lcm-client.com/belimo/matching/41911-03900/c8cb570d5127ae96aaae8eee6655be39,ok,Automotive,Exption,n,,
461,462,Resistors,Panasonic,41911-04302,ERJ2RKF4302,ERJ2RKF4302X,https://app.lcm-client.com/belimo/matching/41911-04302/c8cb570d5127ae96aaae8eee66560497,ok,Automotive,Exption,n,,
462,463,Resistors,Panasonic,41911-04701,ERJ2RKF4703,ERJ2RKF4703X,https://app.lcm-client.com/belimo/matching/41911-04701/c8cb570d5127ae96aaae8eee66567b38,ok,Automotive,Exption,n,,
463,464,Resistors,Panasonic,41911-08872,ERJ2RKF8872,ERJ2RKF8872X,https://app.lcm-client.com/belimo/matching/41911-08872/c8cb570d5127ae96aaae8eee6658f0ba,ok,Automotive,Exption,n,,
464,465,Resistors,Panasonic,42175-03602,ERJ2RKF3602,ERJ2RKF3602X,https://app.lcm-client.com/belimo/matching/42175-03602/c8cb570d5127ae96aaae8eee6659b0b1,ok,Automotive,Exption,n,,
465,466,Resistors,Panasonic,42175-08201,ERJ2RKF8201,ERJ2RKF8201X,https://app.lcm-client.com/belimo/matching/42175-08201/c8cb570d5127ae96aaae8eee6659c7f1,ok,Automotive,Exption,n,,
466,467,Resistors,Panasonic,40412-02701,ERJ-U03D2701V,ERJU03D2701V,https://app.lcm-client.com/belimo/matching/40412-02701/ef351458b324e0850a464074929e2bee,ok,Automotive,Exption,n,,
467,468,Resistors,Panasonic,40412-02701,ERJ-U3RD2701V,ERJU3RD2701V,https://app.lcm-client.com/belimo/matching/40412-02701/ef351458b324e0850a464074929e3613,ok,Automotive,Exption,n,,
468,469,Resistors,Panasonic,41861-01003,ERA2AEB104,ERA2AEB104X,https://app.lcm-client.com/belimo/matching/41861-01003/ef351458b324e0850a46407492ccb156,ok,Automotive,Exption,n,,
469,470,Resistors,Panasonic,41861-02001,ERA2AEB202,ERA2AEB202X,https://app.lcm-client.com/belimo/matching/41861-02001/ef351458b324e0850a46407492ccefa4,ok,Automotive,Exption,n,,
470,471,Resistors,Panasonic,41861-02702,ERA2AEB273,ERA2AEB273X,https://app.lcm-client.com/belimo/matching/41861-02702/ef351458b324e0850a46407492cd4c96,ok,Automotive,Exption,n,,
471,472,Resistors,Panasonic,41861-04702,ERJ2RKF4702,ERJ2RKF4702X,https://app.lcm-client.com/belimo/matching/41861-04702/ef351458b324e0850a46407492cd780d,ok,Automotive,Exption,n,,
472,473,Resistors,Panasonic,41861-06802,ERA2AEB683,ERA2AEB683X,https://app.lcm-client.com/belimo/matching/41861-06802/ef351458b324e0850a46407492cd95c0,ok,Automotive,Exption,n,,
473,474,Resistors,Panasonic,41911-01001,ERJ2RKF1001,ERJ2RKF1001X,https://app.lcm-client.com/belimo/matching/41911-01001/ef351458b324e0850a46407492ced498,ok,Automotive,Exption,n,,
474,475,Resistors,Panasonic,41911-05102,ERJ2RKF5102,ERJ2RKF5102X,https://app.lcm-client.com/belimo/matching/41911-05102/ef351458b324e0850a46407492d19988,ok,Automotive,Exption,n,,
475,476,Resistors,Panasonic,41911-05103,ERJ2RKF5103,ERJ2RKF5103X,https://app.lcm-client.com/belimo/matching/41911-05103/ef351458b324e0850a46407492d1cc89,ok,Automotive,Exption,n,,
476,477,Resistors,Panasonic,41911-05603,ERJ2RKF5603,ERJ2RKF5603X,https://app.lcm-client.com/belimo/matching/41911-05603/ef351458b324e0850a46407492d223fb,ok,Automotive,Exption,n,,
477,478,Resistors,Panasonic,41911-06201,ERJ2RKF6201,ERJ2RKF6201X,https://app.lcm-client.com/belimo/matching/41911-06201/ef351458b324e0850a46407492d2c3d1,ok,Automotive,Exption,n,,
478,479,Resistors,Panasonic,41911-06202,ERJ2RKF6202,ERJ2RKF6202X,https://app.lcm-client.com/belimo/matching/41911-06202/ef351458b324e0850a46407492d2fe25,ok,Automotive,Exption,n,,
479,480,Resistors,Panasonic,41911-06802,ERJ2RKF6802,ERJ2RKF6802X,https://app.lcm-client.com/belimo/matching/41911-06802/ef351458b324e0850a46407492d330e8,ok,Automotive,Exption,n,,
480,481,Resistors,Panasonic,41911-06803,ERJ2RKF6803,ERJ2RKF6803X,https://app.lcm-client.com/belimo/matching/41911-06803/ef351458b324e0850a46407492d3643a,ok,Automotive,Exption,n,,
481,482,Resistors,Panasonic,41911-06809,ERJ2RKF68R0,ERJ2RKF68R0X,https://app.lcm-client.com/belimo/matching/41911-06809/ef351458b324e0850a46407492d3ab42,ok,Automotive,Exption,n,,
482,483,Resistors,Panasonic,47673-00001,ERJ-6ENF1151V,ERJ6ENF1151V,https://app.lcm-client.com/belimo/matching/47673-00001/ef351458b324e0850a46407492de2ab2,ok,Automotive,Exption,n,,
483,484,Resistors,Panasonic,47678-00001,ERJ-6ENF4301V,ERJ6ENF4301V,https://app.lcm-client.com/belimo/matching/47678-00001/ef351458b324e0850a46407492de700b,ok,Automotive,Exption,n,,
484,485,Resistors,Panasonic,47682-00001,ERJ-6ENF1912V,ERJ6ENF1912V,https://app.lcm-client.com/belimo/matching/47682-00001/ef351458b324e0850a46407492decfd2,ok,Automotive,Exption,n,,
485,486,Resistors,TDK,40138,B57620C5102J,B57620C5102J062,https://app.lcm-client.com/belimo/matching/40138/ef351458b324e0850a464074929dd12c,ok,STD,Yes,y,Requires Update,https://app.lcm-client.com/belimo/part/40138

@ -0,0 +1,487 @@
,Pos,Category,Manufacturer,CPN,MPN,MPN_Matched,Link,Status,State,ROHS,report_belimo,Comment,CPN_Link
0,1,Resistors,Vishay,41749-01509,CMB02070X1509,CMB02070X1509JB200 ,https://app.lcm-client.com/belimo/matching/41749-01509/46de94ed90f9f5ccd2b17e508cf7765a,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/41749-01509
1,2,Resistors,Vishay,40613-01001,MCU08050D1001B,MCU08050D1001BP500,https://app.lcm-client.com/belimo/matching/40613-01001/a57dd45b8b8bfbbc6b72118464d732a4,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01001
2,3,Resistors,Vishay,40613-01002,MCU08050D1002B,MCU08050D1002BP500,https://app.lcm-client.com/belimo/matching/40613-01002/a57dd45b8b8bfbbc6b72118464d75801,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01002
3,4,Resistors,Vishay,40613-01152,MCU08050D1152B,MCU08050D1152BP500,https://app.lcm-client.com/belimo/matching/40613-01152/a57dd45b8b8bfbbc6b72118464d7859d,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01152
4,5,Resistors,Vishay,40613-01271,MCU08050D1271B,MCU08050D1271BP500,https://app.lcm-client.com/belimo/matching/40613-01271/a57dd45b8b8bfbbc6b72118464d7c5d9,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01271
5,6,Resistors,Vishay,40613-01300,MCU08050D1300B,MCU08050D1300BP500,https://app.lcm-client.com/belimo/matching/40613-01300/a57dd45b8b8bfbbc6b72118464d7dde1,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01300
6,7,Resistors,Vishay,40613-01502,MCU08050D1502B,MCU08050D1502BP500,https://app.lcm-client.com/belimo/matching/40613-01502/a57dd45b8b8bfbbc6b72118464d7f9ab,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01502
7,8,Resistors,Vishay,40613-01503,MCU08050D1503B,MCU08050D1503BP500,https://app.lcm-client.com/belimo/matching/40613-01503/a57dd45b8b8bfbbc6b72118464d80785,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01503
8,9,Resistors,Vishay,40613-01602,MCU08050D1602B,MCU08050D1602BP500,https://app.lcm-client.com/belimo/matching/40613-01602/a57dd45b8b8bfbbc6b72118464d82cc5,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01602
9,10,Resistors,Vishay,40613-02001,MCU08050D2001B,MCU08050D2001BP500,https://app.lcm-client.com/belimo/matching/40613-02001/a57dd45b8b8bfbbc6b72118464d863d6,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-02001
10,11,Resistors,Vishay,40617-01208,SMM02040C1208F,SMM02040C1208FB300,https://app.lcm-client.com/belimo/matching/40617-01208/a57dd45b8b8bfbbc6b72118464e27bef,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01208
11,12,Resistors,Vishay,40617-01208,MMA02040C1211F,MMA02040C1211FB300,https://app.lcm-client.com/belimo/matching/40617-01211/a57dd45b8b8bfbbc6b72118464e2d494,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01208
12,13,Resistors,Vishay, 40617-01211,SMM02040C1211F,SMM02040C1211FB300,https://app.lcm-client.com/belimo/matching/40617-01211/a57dd45b8b8bfbbc6b72118464e2d5e6,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/ 40617-01211
13,14,Resistors,Vishay,40617-01211,MMA02040C1308F,MMA02040C1308FB300,https://app.lcm-client.com/belimo/matching/40617-01308/a57dd45b8b8bfbbc6b72118464e330ad,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01211
14,15,Resistors,Vishay,40617-01308,SMM02040C1308F,SMM02040C1308FB300,https://app.lcm-client.com/belimo/matching/40617-01308/a57dd45b8b8bfbbc6b72118464e3356a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01308
15,16,Resistors,Vishay,40617-01308,MMA02040C1508F,MMA02040C1508FB300,https://app.lcm-client.com/belimo/matching/40617-01508/a57dd45b8b8bfbbc6b72118464e39977,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01308
16,17,Resistors,Vishay,40617-01508,SMM02040C1508F,SMM02040C1508FB300,https://app.lcm-client.com/belimo/matching/40617-01508/a57dd45b8b8bfbbc6b72118464e3a808,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01508
17,18,Resistors,Vishay,40617-01508,MMA02040C1509F,MMA02040C1509FB300,https://app.lcm-client.com/belimo/matching/40617-01509/a57dd45b8b8bfbbc6b72118464e40ddc,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01508
18,19,Resistors,Vishay,40617-01509,SMM02040C1509F,SMM02040C1509FB300,https://app.lcm-client.com/belimo/matching/40617-01509/a57dd45b8b8bfbbc6b72118464e41200,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01509
19,20,Resistors,Vishay,40617-01509,MMA02040C1800F,MMA02040C1800FB300,https://app.lcm-client.com/belimo/matching/40617-01800/a57dd45b8b8bfbbc6b72118464e48179,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01509
20,21,Resistors,Vishay,40617-03901,SMM02040C3901F,SMM02040C3901FB300,https://app.lcm-client.com/belimo/matching/40617-03901/a57dd45b8b8bfbbc6b72118464e91b53,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03901
21,22,Resistors,Vishay,40617-04301,MMA02040C4301F,MMA02040C4301FB300,https://app.lcm-client.com/belimo/matching/40617-04301/a57dd45b8b8bfbbc6b72118464e98b90,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04301
22,23,Resistors,Vishay,40617-04301,SMM02040C4301F,SMM02040C4301FB300,https://app.lcm-client.com/belimo/matching/40617-04301/a57dd45b8b8bfbbc6b72118464e9917e,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04301
23,24,Resistors,Vishay,40617-04700,MMA02040C4700F,MMA02040C4700FB300,https://app.lcm-client.com/belimo/matching/40617-04700/a57dd45b8b8bfbbc6b72118464ea276d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04700
24,25,Resistors,Vishay,40617-04700,SMM02040C4700F,SMM02040C4700FB300,https://app.lcm-client.com/belimo/matching/40617-04700/a57dd45b8b8bfbbc6b72118464ea2ceb,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04700
25,26,Resistors,Vishay,47180,MBB02070C1052F,MBB02070C1052FRP00,https://app.lcm-client.com/belimo/matching/47180/a57dd45b8b8bfbbc6b72118464f9e611,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47180
26,27,Resistors,Vishay,47181,MBB02070C7322F,MBB02070C7322FRP00,https://app.lcm-client.com/belimo/matching/47181/a57dd45b8b8bfbbc6b72118464fa0d74,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47181
27,28,Resistors,Vishay,47182,MBB02070C8062F,MBB02070C8062FR100 ,https://app.lcm-client.com/belimo/matching/47182/a57dd45b8b8bfbbc6b72118464fa284b,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47182
28,29,Resistors,Vishay,47183,MBB02070C2873F,MBB02070C2873FRP00,https://app.lcm-client.com/belimo/matching/47183/a57dd45b8b8bfbbc6b72118464fa487f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47183
29,30,Resistors,Vishay,47184,MBB02070C4304F,MBB02070C4304FRP00,https://app.lcm-client.com/belimo/matching/47184/a57dd45b8b8bfbbc6b72118464fa7121,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47184
30,31,Resistors,Vishay,47340,MBB02070C4531F,MBB02070C4531FRP00,https://app.lcm-client.com/belimo/matching/47340/a57dd45b8b8bfbbc6b72118464fbae15,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47340
31,32,Resistors,Vishay,47341,MBB02070C5601F,MBB02070C5601FRP00,https://app.lcm-client.com/belimo/matching/47341/a57dd45b8b8bfbbc6b72118464fbbb63,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47341
32,33,Resistors,Vishay,47342,MBB02070C4423F,MBB02070C4423FRP00,https://app.lcm-client.com/belimo/matching/47342/a57dd45b8b8bfbbc6b72118464fbd854,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47342
33,34,Resistors,Vishay,47343,MBB02070C2671F,MBB02070C2671FRP00,https://app.lcm-client.com/belimo/matching/47343/a57dd45b8b8bfbbc6b72118464fbf0df,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47343
34,35,Resistors,Vishay,47344,MBB02070C6202F,MBB02070C6202FRP00,https://app.lcm-client.com/belimo/matching/47344/a57dd45b8b8bfbbc6b72118464fc0ace,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47344
35,36,Resistors,Vishay,47355-01104,MBB02070C1104F,MBB02070C1104FRP00,https://app.lcm-client.com/belimo/matching/47355-01104/a57dd45b8b8bfbbc6b72118464fc27b6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01104
36,37,Resistors,Vishay,47355-01104,MRS25000C1104F,MRS25000C1104FRP00,https://app.lcm-client.com/belimo/matching/47355-01104/a57dd45b8b8bfbbc6b72118464fc3277,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01104
37,38,Resistors,Vishay,47355-01153,MBB02070C1153F,MBB02070C1153FRP00,https://app.lcm-client.com/belimo/matching/47355-01153/a57dd45b8b8bfbbc6b72118464fc55bf,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01153
38,39,Resistors,Vishay,47355-01153,MRS25000C1153F,MRS25000C1153FRP00 ,https://app.lcm-client.com/belimo/matching/47355-01153/a57dd45b8b8bfbbc6b72118464fc6578,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01153
39,40,Resistors,Vishay,47355-01208,MBB02070C1208F,MBB02070C1208FRP00,https://app.lcm-client.com/belimo/matching/47355-01208/a57dd45b8b8bfbbc6b72118464fc73ef,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01208
40,41,Resistors,Vishay,40617-04992,SMM02040C4992F,SMM02040C4992FB300,https://app.lcm-client.com/belimo/matching/40617-04992/c8cb570d5127ae96aaae8eee6648e367,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04992
41,42,Resistors,Vishay,40617-05109,MMA02040C5109F,MMA02040C5109FB300,https://app.lcm-client.com/belimo/matching/40617-05109/c8cb570d5127ae96aaae8eee66495230,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-05109
42,43,Resistors,Vishay,40617-05109,SMM02040C5109F,SMM02040C5109FB300,https://app.lcm-client.com/belimo/matching/40617-05109/c8cb570d5127ae96aaae8eee66496136,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-05109
43,44,Resistors,Vishay,40617-05601,MMA02040C5601F,MMA02040C5601FB300,https://app.lcm-client.com/belimo/matching/40617-05601/c8cb570d5127ae96aaae8eee6649c485,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-05601
44,45,Resistors,Vishay,40617-05601,SMM02040C5601F,SMM02040C5601FB300,https://app.lcm-client.com/belimo/matching/40617-05601/c8cb570d5127ae96aaae8eee6649c730,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-05601
45,46,Resistors,Vishay,40617-06208,MMA02040C6208F,MMA02040C6208FB300,https://app.lcm-client.com/belimo/matching/40617-06208/c8cb570d5127ae96aaae8eee664a2dc7,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06208
46,47,Resistors,Vishay,40617-06208,SMM02040C6208F,SMM02040C6208FB300,https://app.lcm-client.com/belimo/matching/40617-06208/c8cb570d5127ae96aaae8eee664a3d62,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06208
47,48,Resistors,Vishay,40617-06800,MMA02040C6800F,MMA02040C6800FB300,https://app.lcm-client.com/belimo/matching/40617-06800/c8cb570d5127ae96aaae8eee664aadfe,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06800
48,49,Resistors,Vishay,40617-06800,SMM02040C6800F,SMM02040C6800FB300,https://app.lcm-client.com/belimo/matching/40617-06800/c8cb570d5127ae96aaae8eee664ab3f4,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06800
49,50,Resistors,Vishay,40617-06801,MMA02040C6801F,MMA02040C6801FB300,https://app.lcm-client.com/belimo/matching/40617-06801/c8cb570d5127ae96aaae8eee664b9f72,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06801
50,51,Resistors,Vishay,40618-07502,CRCW251275K0JN,CRCW251275K0JNEG,https://app.lcm-client.com/belimo/matching/40618-07502/c8cb570d5127ae96aaae8eee664dbba8,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/40618-07502
51,52,Resistors,Vishay,40663-03307,MMB02070C3307J,MMB02070C3307JB200,https://app.lcm-client.com/belimo/matching/40663-03307/c8cb570d5127ae96aaae8eee664ded91,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40663-03307
52,53,Resistors,Vishay,40663-05107,MMB02070C5107J,MMB02070C5107JB200,https://app.lcm-client.com/belimo/matching/40663-05107/c8cb570d5127ae96aaae8eee664e0785,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40663-05107
53,54,Resistors,Vishay,40701-01001,PR01000101001F,PR01000101001FR500,https://app.lcm-client.com/belimo/matching/40701-01001/c8cb570d5127ae96aaae8eee664e1100,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40701-01001
54,55,Resistors,Vishay,40702,MBE04140C8200F,MBE04140C8200FR200,https://app.lcm-client.com/belimo/matching/40702/c8cb570d5127ae96aaae8eee664e2354,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40702
55,56,Resistors,Vishay,40703-04990,PR02000204990F,PR02000204990FR500,https://app.lcm-client.com/belimo/matching/40703-04990/c8cb570d5127ae96aaae8eee664e3084,nok,Automotive,Yes,y,Missing In LCM,https://app.lcm-client.com/belimo/part/40703-04990
56,57,Resistors,Vishay,40710-05600,CPF3560R00FKE,CPF3560R00FKEE6,https://app.lcm-client.com/belimo/matching/40710-05600/c8cb570d5127ae96aaae8eee664e4712,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40710-05600
57,58,Resistors,Vishay,40710-05600,CPF3560R00FLE,CPF3560R00FLE36,https://app.lcm-client.com/belimo/matching/40710-05600/c8cb570d5127ae96aaae8eee664e48da,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40710-05600
58,59,Resistors,Vishay,41917-02208,RCS12062R20JN,RCS12062R20JNEA,https://app.lcm-client.com/belimo/matching/41917-02208/c8cb570d5127ae96aaae8eee66591f88,ok,STD,Exption,n,,https://app.lcm-client.com/belimo/part/41917-02208
59,60,Resistors,Vishay,41917-02209,RCS120622R0JN,RCS120622R0JNEA,https://app.lcm-client.com/belimo/matching/41917-02209/c8cb570d5127ae96aaae8eee66593e8b,ok,STD,Exption,n,,https://app.lcm-client.com/belimo/part/41917-02209
60,61,Resistors,Vishay,47012-02371,MRS25000C2371F,MRS25000C2371FRP00,https://app.lcm-client.com/belimo/matching/47012-02371/c8cb570d5127ae96aaae8eee665ba18c,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-02371
61,62,Resistors,Vishay,47012-02400,MBB02070C2400F,MBB02070C2400FRP00,https://app.lcm-client.com/belimo/matching/47012-02400/c8cb570d5127ae96aaae8eee665bc184,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47012-02400
62,63,Resistors,Vishay,47012-02400,MRS25000C2400F,MRS25000C2400FRP00,https://app.lcm-client.com/belimo/matching/47012-02400/c8cb570d5127ae96aaae8eee665bcc30,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47012-02400
63,64,Resistors,Vishay,47072,MBB02070C3301F,MBB02070C3301FRP00,https://app.lcm-client.com/belimo/matching/47072/c8cb570d5127ae96aaae8eee665e3813,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47072
64,65,Resistors,Vishay,47080,MBB02070C1603F,MBB02070C1603FRP00,https://app.lcm-client.com/belimo/matching/47080/c8cb570d5127ae96aaae8eee665e5210,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47080
65,66,Resistors,Vishay,47100,MBB02070C4122F,MBB02070C4122FRP00,https://app.lcm-client.com/belimo/matching/47100/c8cb570d5127ae96aaae8eee665e71cc,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47100
66,67,Resistors,Vishay,47101,MBB02070C1479F,MBB02070C1479FRP00,https://app.lcm-client.com/belimo/matching/47101/c8cb570d5127ae96aaae8eee665e9aa1,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47101
67,68,Resistors,Vishay,47102,MBB02070C8871F,MBB02070C8871FRP00,https://app.lcm-client.com/belimo/matching/47102/c8cb570d5127ae96aaae8eee665eb013,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47102
68,69,Resistors,Vishay,47103,MBB02070C2491F,MBB02070C2491FRP00,https://app.lcm-client.com/belimo/matching/47103/c8cb570d5127ae96aaae8eee665ed09c,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47103
69,70,Resistors,Vishay,47122,MBB02070C1583F,MBB02070C1583FRP00,https://app.lcm-client.com/belimo/matching/47122/c8cb570d5127ae96aaae8eee665f1b46,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47122
70,71,Resistors,Vishay,47142,MBB02070C8201F,MBB02070C8201FRP00,https://app.lcm-client.com/belimo/matching/47142/c8cb570d5127ae96aaae8eee66606f98,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47142
71,72,Resistors,Vishay,47145,MBB02070C1203F,MBB02070C1203FRP00,https://app.lcm-client.com/belimo/matching/47145/c8cb570d5127ae96aaae8eee6660a704,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47145
72,73,Resistors,Vishay,47162,MBB02070C5362F,MBB02070C5362FRP00,https://app.lcm-client.com/belimo/matching/47162/c8cb570d5127ae96aaae8eee6660c3c6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47162
73,74,Resistors,Vishay,47168,MBB02070C3003F,MBB02070C3003FRP00,https://app.lcm-client.com/belimo/matching/47168/c8cb570d5127ae96aaae8eee6660fe68,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47168
74,75,Resistors,Vishay,47179,MBB02070C9760F,MBB02070C9760FRP00,https://app.lcm-client.com/belimo/matching/47179/c8cb570d5127ae96aaae8eee666120a3,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47179
75,76,Resistors,Vishay,40412-02701,CRCW06032K70DH,CRCW06032K70DHEAP,https://app.lcm-client.com/belimo/matching/40412-02701/ef351458b324e0850a464074929e4c4e,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/40412-02701
76,77,Resistors,Vishay,40412-02701,CRCW06032K70DK,CRCW06032K70DHEAP,https://app.lcm-client.com/belimo/matching/40412-02701/ef351458b324e0850a464074929e54c2,ok,Automotive,Exption,y,PPM Difference,https://app.lcm-client.com/belimo/part/40412-02701
77,78,Resistors,Vishay,40542,MBB02070C2702F,MBB02070C2702FRP00 ,https://app.lcm-client.com/belimo/matching/40542/ef351458b324e0850a464074929f8a38,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40542
78,79,Resistors,Vishay,40542,MBB0207IC2702F,MBB0207IC2702FRP00,https://app.lcm-client.com/belimo/matching/40542/ef351458b324e0850a464074929f962a,nok,Medical,Yes,y,Missing In LCM,https://app.lcm-client.com/belimo/part/40542
79,80,Resistors,Vishay,40542,MRS25000C2702F,MRS25000C2702FRP00,https://app.lcm-client.com/belimo/matching/40542/ef351458b324e0850a464074929f971d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40542
80,81,Resistors,Vishay,40602-01100,SMM02070C1100F,SMM02070C1100FBS00,https://app.lcm-client.com/belimo/matching/40602-01100/ef351458b324e0850a46407492a0fcf3,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01100
81,82,Resistors,Vishay,40602-01501,MMB02070C1501F,MMB02070C1501FB700,https://app.lcm-client.com/belimo/matching/40602-01501/ef351458b324e0850a46407492a1312e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01501
82,83,Resistors,Vishay,40602-01501,SMM02070C1501F,SMM02070C1501FBS00,https://app.lcm-client.com/belimo/matching/40602-01501/ef351458b324e0850a46407492a13317,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01501
83,84,Resistors,Vishay,40602-01503,MMB02070C1503F,MMB02070C1503FB200,https://app.lcm-client.com/belimo/matching/40602-01503/ef351458b324e0850a46407492a166ca,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01503
84,85,Resistors,Vishay,40602-01503,SMM02070C1503F,SMM02070C1503FBS00,https://app.lcm-client.com/belimo/matching/40602-01503/ef351458b324e0850a46407492a172df,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01503
85,86,Resistors,Vishay,40602-01801,MMB02070C1801F,MMB02070C1801FB700,https://app.lcm-client.com/belimo/matching/40602-01801/ef351458b324e0850a46407492a19e31,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01801
86,87,Resistors,Vishay,40602-01801,SMM02070C1801F,SMM02070C1801FBS00,https://app.lcm-client.com/belimo/matching/40602-01801/ef351458b324e0850a46407492a1adcd,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01801
87,88,Resistors,Vishay,40602-02201,MMB02070C2201F,MMB02070C2201FB700,https://app.lcm-client.com/belimo/matching/40602-02201/ef351458b324e0850a46407492a1e4d1,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02201
88,89,Resistors,Vishay,40602-02201,SMM02070C2201F,SMM02070C2201FBS00,https://app.lcm-client.com/belimo/matching/40602-02201/ef351458b324e0850a46407492a1e7f8,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02201
89,90,Resistors,Vishay,40602-02203,MMB02070C2203F,MMB02070C2203FB200,https://app.lcm-client.com/belimo/matching/40602-02203/ef351458b324e0850a46407492a21787,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02203
90,91,Resistors,Vishay,40602-04701,SMM02070C4701F,SMM02070C4701FBS00,https://app.lcm-client.com/belimo/matching/40602-04701/ef351458b324e0850a46407492a55cd6,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04701
91,92,Resistors,Vishay,40602-04702,MMB02070C4702F,MMB02070C4702FB200,https://app.lcm-client.com/belimo/matching/40602-04702/ef351458b324e0850a46407492a5987a,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04702
92,93,Resistors,Vishay,40602-04702,SMM02070C4702F,SMM02070C4702FBS00 ,https://app.lcm-client.com/belimo/matching/40602-04702/ef351458b324e0850a46407492a59e12,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04702
93,94,Resistors,Vishay,40602-04703,MMB02070C4703F,MMB02070C4703FB200 ,https://app.lcm-client.com/belimo/matching/40602-04703/ef351458b324e0850a46407492a5c84a,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04703
94,95,Resistors,Vishay,40602-04703,SMM02070C4703F,SMM02070C4703FBS00,https://app.lcm-client.com/belimo/matching/40602-04703/ef351458b324e0850a46407492a5cef1,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04703
95,96,Resistors,Vishay,40602-05100,MMB02070C5100F,MMB02070C5100FB700,https://app.lcm-client.com/belimo/matching/40602-05100/ef351458b324e0850a46407492a6213a,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05100
96,97,Resistors,Vishay,40602-05100,SMM02070C5100F,SMM02070C5100FBP00,https://app.lcm-client.com/belimo/matching/40602-05100/ef351458b324e0850a46407492a628ff,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05100
97,98,Resistors,Vishay,40602-05603,MMB02070C5603F,MMB02070C5603FB700,https://app.lcm-client.com/belimo/matching/40602-05603/ef351458b324e0850a46407492a653e8,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05603
98,99,Resistors,Vishay,40602-05603,SMM02070C5603F,SMM02070C5603FBS00,https://app.lcm-client.com/belimo/matching/40602-05603/ef351458b324e0850a46407492a65dfb,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05603
99,100,Resistors,Vishay,40602-05607,MMB02070C5607F,MMB02070C5607FB200,https://app.lcm-client.com/belimo/matching/40602-05607/ef351458b324e0850a46407492a66cc9,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05607
100,101,Resistors,Vishay,40613-02002,MCU08050D2002B,MCU08050D2002BP500,https://app.lcm-client.com/belimo/matching/40613-02002/a57dd45b8b8bfbbc6b72118464d889cb,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-02002
101,102,Resistors,Vishay,40613-02432,MCU08050D2431B,MCU08050D2431BP500,https://app.lcm-client.com/belimo/matching/40613-02432/a57dd45b8b8bfbbc6b72118464d8b980,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-02432
102,103,Resistors,Vishay,40613-03321,MCU08050D3321B,MCU08050D3321BP500,https://app.lcm-client.com/belimo/matching/40613-03321/a57dd45b8b8bfbbc6b72118464d8ef7d,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-03321
103,104,Resistors,Vishay,40613-03601,MCU08050D3601B,MCU08050D3601BP500,https://app.lcm-client.com/belimo/matching/40613-03601/a57dd45b8b8bfbbc6b72118464d918c6,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-03601
104,105,Resistors,Vishay,40613-04022,MCU08050D4022B,MCU08050D4022BP500,https://app.lcm-client.com/belimo/matching/40613-04022/a57dd45b8b8bfbbc6b72118464da3edf,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-04022
105,106,Resistors,Vishay,40613-06802,MCU08050D6802B,MCU08050D6802BP500,https://app.lcm-client.com/belimo/matching/40613-06802/a57dd45b8b8bfbbc6b72118464da579b,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-06802
106,107,Resistors,Vishay,40613-07871,MCU08050D7871B,MCU08050D7871BP500,https://app.lcm-client.com/belimo/matching/40613-07871/a57dd45b8b8bfbbc6b72118464da6f4d,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-07871
107,108,Resistors,Vishay,40613-09762,MCU08050D9762B,MCU08050D9762BP500,https://app.lcm-client.com/belimo/matching/40613-09762/a57dd45b8b8bfbbc6b72118464da97e7,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-09762
108,109,Resistors,Vishay,40617-01204,MMA02040C1205F,MMA02040C1205FB300,https://app.lcm-client.com/belimo/matching/40617-01204/a57dd45b8b8bfbbc6b72118464e1f209,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01204
109,110,Resistors,Vishay,40617-01208,MMA02040C1208F,MMA02040C1208FB300,https://app.lcm-client.com/belimo/matching/40617-01208/a57dd45b8b8bfbbc6b72118464e26c1f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01208
110,111,Resistors,Vishay,47215,MBB02070C3603F,MBB02070C3603FRP00,https://app.lcm-client.com/belimo/matching/47215/a57dd45b8b8bfbbc6b72118464fa91aa,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47215
111,112,Resistors,Vishay,47232,MBB02070C5622F,MBB02070C5622FRP00,https://app.lcm-client.com/belimo/matching/47232/a57dd45b8b8bfbbc6b72118464fabb7c,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47232
112,113,Resistors,Vishay,47245,MBB02070C1330F,MBB02070C1330FRP00,https://app.lcm-client.com/belimo/matching/47245/a57dd45b8b8bfbbc6b72118464fadaf4,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47245
113,114,Resistors,Vishay,47251,MBB02070C1371F,MBB02070C1371FRP00,https://app.lcm-client.com/belimo/matching/47251/a57dd45b8b8bfbbc6b72118464faf77a,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47251
114,115,Resistors,Vishay,47274,MBB02070C1108F,MBB02070C1108FRP00,https://app.lcm-client.com/belimo/matching/47274/a57dd45b8b8bfbbc6b72118464fb1287,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47274
115,116,Resistors,Vishay,47313,MBB02070C3303F,MBB02070C3303FRP00,https://app.lcm-client.com/belimo/matching/47313/a57dd45b8b8bfbbc6b72118464fb22db,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47313
116,117,Resistors,Vishay,47315,MBB02070C1604F,MBB02070C1604FRP00,https://app.lcm-client.com/belimo/matching/47315/a57dd45b8b8bfbbc6b72118464fb3e0d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47315
117,118,Resistors,Vishay,47316,MBB02070C4704F,MBB02070C4704FRP00,https://app.lcm-client.com/belimo/matching/47316/a57dd45b8b8bfbbc6b72118464fb5c4f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47316
118,119,Resistors,Vishay,47337,MBB02070C2002F,MBB02070C2002FRP00,https://app.lcm-client.com/belimo/matching/47337/a57dd45b8b8bfbbc6b72118464fb756d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47337
119,120,Resistors,Vishay,47339,MBB02070C6802F,MBB02070C6802FRP00,https://app.lcm-client.com/belimo/matching/47339/a57dd45b8b8bfbbc6b72118464fb8f39,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47339
120,121,Resistors,Vishay,40617-06801,SMM02040C6801F,SMM02040C6801FB000,https://app.lcm-client.com/belimo/matching/40617-06801/c8cb570d5127ae96aaae8eee664ba638,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06801
121,122,Resistors,Vishay,40617-06807,MMA02040C6807F,MMA02040C6807FB300,https://app.lcm-client.com/belimo/matching/40617-06807/c8cb570d5127ae96aaae8eee664c0b79,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06807
122,123,Resistors,Vishay,40617-06807,SMM02040B6807J,SMM02040B6807JB000,https://app.lcm-client.com/belimo/matching/40617-06807/c8cb570d5127ae96aaae8eee664c1061,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06807
123,124,Resistors,Vishay,40617-07502,MMA02040C7502F,MMA02040C7502FB200,https://app.lcm-client.com/belimo/matching/40617-07502/c8cb570d5127ae96aaae8eee664c7046,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-07502
124,125,Resistors,Vishay,40617-07502,SMM02040C7502F,SMM02040C7502FB000,https://app.lcm-client.com/belimo/matching/40617-07502/c8cb570d5127ae96aaae8eee664c780d,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-07502
125,126,Resistors,Vishay,40617-09107,MMA02040C9107F,MMA02040C9107FB300,https://app.lcm-client.com/belimo/matching/40617-09107/c8cb570d5127ae96aaae8eee664cd373,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-09107
126,127,Resistors,Vishay,40617-09107,SMM02040C9107F,SMM02040C9107FB000,https://app.lcm-client.com/belimo/matching/40617-09107/c8cb570d5127ae96aaae8eee664cd73a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-09107
127,128,Resistors,Vishay,40618-01001,CRCW25121K00JN,CRCW25121K00JNEG,https://app.lcm-client.com/belimo/matching/40618-01001/c8cb570d5127ae96aaae8eee664d0cdc,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/40618-01001
128,129,Resistors,Vishay,40618-01501,CRCW25121K50JN,CRCW25121K50JNEG,https://app.lcm-client.com/belimo/matching/40618-01501/c8cb570d5127ae96aaae8eee664d2f90,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/40618-01501
129,130,Resistors,Vishay,40618-02401,CRCW25122K40JN,CRCW25122K40JNEG,https://app.lcm-client.com/belimo/matching/40618-02401/c8cb570d5127ae96aaae8eee664d5a8d,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/40618-02401
130,131,Resistors,Vishay,47123,MBB02070C1873F,MBB02070C1873FRP00,https://app.lcm-client.com/belimo/matching/47123/c8cb570d5127ae96aaae8eee665f3f95,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47123
131,132,Resistors,Vishay,47125,MBB02070C1008F,MBB02070C1008FRP00,https://app.lcm-client.com/belimo/matching/47125/c8cb570d5127ae96aaae8eee665f5b74,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47125
132,133,Resistors,Vishay,47131,MBB02070C6193F,MBB02070C6193FRP00,https://app.lcm-client.com/belimo/matching/47131/c8cb570d5127ae96aaae8eee665f8495,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47131
133,134,Resistors,Vishay,47132,MBB02070C3323F,MBB02070C3323FRP00,https://app.lcm-client.com/belimo/matching/47132/c8cb570d5127ae96aaae8eee665fa357,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47132
134,135,Resistors,Vishay,47133,MBB02070C1433F,MBB02070C1433FRP00,https://app.lcm-client.com/belimo/matching/47133/c8cb570d5127ae96aaae8eee665fc181,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47133
135,136,Resistors,Vishay,47137,MBB02070C4700F,MBB02070C4700FRP00,https://app.lcm-client.com/belimo/matching/47137/c8cb570d5127ae96aaae8eee665fddc6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47137
136,137,Resistors,Vishay,47138,MBB02070C1653F,MBB02070C1653FRP00,https://app.lcm-client.com/belimo/matching/47138/c8cb570d5127ae96aaae8eee6660128b,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47138
137,138,Resistors,Vishay,47139,MBB02070C9104F,MBB02070C9104FRP00,https://app.lcm-client.com/belimo/matching/47139/c8cb570d5127ae96aaae8eee66602471,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47139
138,139,Resistors,Vishay,47140,MBB02070C3652F,MBB02070C3652FRP00,https://app.lcm-client.com/belimo/matching/47140/c8cb570d5127ae96aaae8eee6660397f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47140
139,140,Resistors,Vishay,47141,MBB02070C4873F,MBB02070C4873FRP00,https://app.lcm-client.com/belimo/matching/47141/c8cb570d5127ae96aaae8eee66605f85,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47141
140,141,Resistors,Vishay,40602-02203,SMM02070C2203F,SMM02070C2203FBS00,https://app.lcm-client.com/belimo/matching/40602-02203/ef351458b324e0850a46407492a2262b,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02203
141,142,Resistors,Vishay,40602-02204,MMB02070C2204F,MMB02070C2204FB200,https://app.lcm-client.com/belimo/matching/40602-02204/ef351458b324e0850a46407492a250b9,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02204
142,143,Resistors,Vishay,40602-02204,SMM02070C2204F,SMM02070C2204FBS00,https://app.lcm-client.com/belimo/matching/40602-02204/ef351458b324e0850a46407492a2542a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02204
143,144,Resistors,Vishay,40602-02401,MMB02070C2401F,MMB02070C2401FB200,https://app.lcm-client.com/belimo/matching/40602-02401/ef351458b324e0850a46407492a28bcc,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02401
144,145,Resistors,Vishay,40602-02401,SMM02070C2401F,SMM02070C2401FBS00,https://app.lcm-client.com/belimo/matching/40602-02401/ef351458b324e0850a46407492a295bf,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02401
145,146,Resistors,Vishay,40602-02402,MMB02070C2402F,MMB02070C2402FB200,https://app.lcm-client.com/belimo/matching/40602-02402/ef351458b324e0850a46407492a2d0e4,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02402
146,147,Resistors,Vishay,40602-02402,SMM02070C2402F,SMM02070C2402FBS00,https://app.lcm-client.com/belimo/matching/40602-02402/ef351458b324e0850a46407492a2d8ad,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02402
147,148,Resistors,Vishay,40602-02403,MMB02070C2403F,MMB02070C2403FB700,https://app.lcm-client.com/belimo/matching/40602-02403/ef351458b324e0850a46407492a2f357,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02403
148,149,Resistors,Vishay,40602-02403,SMM02070C2403F,SMM02070C2403FBP00,https://app.lcm-client.com/belimo/matching/40602-02403/ef351458b324e0850a46407492a2ffb8,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02403
149,150,Resistors,Vishay,40602-02491,MMB02070C2491F,MMB02070C2491FB700,https://app.lcm-client.com/belimo/matching/40602-02491/ef351458b324e0850a46407492a32ce6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02491
150,151,Resistors,Vishay,40602-06209,MMB02070C6209F,MMB02070C6209FB200,https://app.lcm-client.com/belimo/matching/40602-06209/ef351458b324e0850a46407492a6a237,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-06209
151,152,Resistors,Vishay,40602-06209,SMM02070C6209F,SMM02070C6209FBP00,https://app.lcm-client.com/belimo/matching/40602-06209/ef351458b324e0850a46407492a6a9a2,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-06209
152,153,Resistors,Vishay,40602-07502,MMB02070C7502F,MMB02070C7502FB700,https://app.lcm-client.com/belimo/matching/40602-07502/ef351458b324e0850a46407492a6e1c2,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-07502
153,154,Resistors,Vishay,40602-07502,SMM02070C7502F,SMM02070C7502FBS00,https://app.lcm-client.com/belimo/matching/40602-07502/ef351458b324e0850a46407492a6ee06,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-07502
154,155,Resistors,Vishay,40602-08063,MMB02070C8063F,MMB02070C8063FB700,https://app.lcm-client.com/belimo/matching/40602-08063/ef351458b324e0850a46407492a7303b,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08063
155,156,Resistors,Vishay,40602-08063,SMM02070C8063F,SMM02070C8063FBP00,https://app.lcm-client.com/belimo/matching/40602-08063/ef351458b324e0850a46407492a737bf,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08063
156,157,Resistors,Vishay,40602-08202,MMB02070C8202F,MMB02070C8202FB300,https://app.lcm-client.com/belimo/matching/40602-08202/ef351458b324e0850a46407492a76d3e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08202
157,158,Resistors,Vishay,40602-08202,SMM02070C8202F,SMM02070C8202FBS00,https://app.lcm-client.com/belimo/matching/40602-08202/ef351458b324e0850a46407492a770da,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08202
158,159,Resistors,Vishay,40602-08207,MMB02070C8207F,MMB02070C8207FB200,https://app.lcm-client.com/belimo/matching/40602-08207/ef351458b324e0850a46407492a78da5,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08207
159,160,Resistors,Vishay,40602-09100,MMB02070C9100F,MMB02070C9100FB700,https://app.lcm-client.com/belimo/matching/40602-09100/ef351458b324e0850a46407492a7a753,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-09100
160,161,Resistors,Vishay,40617-01108,SMM02040C1108F,SMM02040C1108FB300,https://app.lcm-client.com/belimo/matching/40617-01108/ef351458b324e0850a46407492bb4cca,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01108
161,162,Resistors,Vishay,40617-01201,MMA02040C1201F,MMA02040C1201FB300,https://app.lcm-client.com/belimo/matching/40617-01201/ef351458b324e0850a46407492bb95e2,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01201
162,163,Resistors,Vishay,40617-01201,SMM02040C1201F,SMM02040C1201FB000,https://app.lcm-client.com/belimo/matching/40617-01201/ef351458b324e0850a46407492bb972a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01201
163,164,Resistors,Vishay,40617-01202,MMA02040C1202F,MMA02040C1202FB000,https://app.lcm-client.com/belimo/matching/40617-01202/ef351458b324e0850a46407492bbf6a3,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01202
164,165,Resistors,Vishay,40617-01202,SMM02040C1202F,SMM02040C1202FB000,https://app.lcm-client.com/belimo/matching/40617-01202/ef351458b324e0850a46407492bbfc0f,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01202
165,166,Resistors,Vishay,40617-01801,MMA02040C1801F,MMA02040C1801FB000,https://app.lcm-client.com/belimo/matching/40617-01801/ef351458b324e0850a46407492be01bb,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01801
166,167,Resistors,Vishay,40617-01801,SMM02040C1801F,SMM02040C1801FB000,https://app.lcm-client.com/belimo/matching/40617-01801/ef351458b324e0850a46407492be0e90,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01801
167,168,Resistors,Vishay,40617-01808,MMA02040C1808F,MMA02040C1808FB000,https://app.lcm-client.com/belimo/matching/40617-01808/ef351458b324e0850a46407492be536e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01808
168,169,Resistors,Vishay,40617-01808,SMM02040C1808F,SMM02040C1808FB300,https://app.lcm-client.com/belimo/matching/40617-01808/ef351458b324e0850a46407492be5915,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01808
169,170,Resistors,Vishay,40617-02002,MMA02040C2002F,MMA02040C2002FB300,https://app.lcm-client.com/belimo/matching/40617-02002/ef351458b324e0850a46407492becaa5,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02002
170,171,Resistors,Vishay,40754,PR02FS0205608K,PR02FS0205608KR500,https://app.lcm-client.com/belimo/matching/40754/ef351458b324e0850a46407492c56031,nok,Automotive,Yes,y,Requires Update,https://app.lcm-client.com/belimo/part/40754
171,172,Resistors,Vishay,40754-01502,CPF215K000JN,CPF215K000JNEE6,https://app.lcm-client.com/belimo/matching/40754/ef351458b324e0850a46407492c56031,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40754-01502
172,173,Resistors,Vishay,40754-01502,PR02000201502J,PR02000201502JR500,https://app.lcm-client.com/belimo/matching/40754-01502/ef351458b324e0850a46407492c57dde,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40754-01502
173,174,Resistors,Vishay,40754-08201,CPF28K2000JN,CPF28K2000JNEE6,https://app.lcm-client.com/belimo/matching/40754-08201/ef351458b324e0850a46407492c580d0,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40754-08201
174,175,Resistors,Vishay,40754-08201,PR02000208201J,PR02000208201JR500,https://app.lcm-client.com/belimo/matching/40754-08201/ef351458b324e0850a46407492c5908d,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40754-08201
175,176,Resistors,Vishay,40754-15608,CPF25R6000JN,CPF25R6000JNEE6,https://app.lcm-client.com/belimo/matching/40754-15608/ef351458b324e0850a46407492c5b5db,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40754-15608
176,177,Resistors,Vishay,40754-15608,PR02000205608J,PR02000205608JR500,https://app.lcm-client.com/belimo/matching/40754-15608/ef351458b324e0850a46407492c5bcec,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40754-15608
177,178,Resistors,Vishay,40850,MBB02070C1101F,MBB02070C1101FRP00,https://app.lcm-client.com/belimo/matching/40850/ef351458b324e0850a46407492c6a39a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40850
178,179,Resistors,Vishay,40850,MRS25000C1101F,MRS25000C1101FRP00,https://app.lcm-client.com/belimo/matching/40850/ef351458b324e0850a46407492c6a870,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40850
179,180,Resistors,Vishay,40851,MBB02070C1501F,MBB02070C1501FRP00,https://app.lcm-client.com/belimo/matching/40851/ef351458b324e0850a46407492c6be78,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40851
180,181,Resistors,Vishay,40862,MRS25000C2203F,MRS25000C2203FRP00,https://app.lcm-client.com/belimo/matching/40862/ef351458b324e0850a46407492c741c4,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40862
181,182,Resistors,Vishay,40867,MBB02070C2403F,MBB02070C2403FRP00,https://app.lcm-client.com/belimo/matching/40867/ef351458b324e0850a46407492c751d7,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40867
182,183,Resistors,Vishay,40867,MRS25000C2403F,MRS25000C2403FRP00,https://app.lcm-client.com/belimo/matching/40867/ef351458b324e0850a46407492c755f8,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40867
183,184,Resistors,Vishay,40877,MBB02070C8661F,MBB02070C8661FRP00,https://app.lcm-client.com/belimo/matching/40877/ef351458b324e0850a46407492c770f6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40877
184,185,Resistors,Vishay,40877,MRS25000C8661F,MRS25000C8661FRP00,https://app.lcm-client.com/belimo/matching/40877/ef351458b324e0850a46407492c77fc8,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40877
185,186,Resistors,Vishay,40885,MBB02070C4221F,MBB02070C4221FRP00,https://app.lcm-client.com/belimo/matching/40885/ef351458b324e0850a46407492c78d94,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40885
186,187,Resistors,Vishay,40885,MRS25000C4221F,MRS25000C4221FRP00,https://app.lcm-client.com/belimo/matching/40885/ef351458b324e0850a46407492c791fe,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40885
187,188,Resistors,Vishay,40897,MBB02070C1009F,MBB02070C1009FRP00,https://app.lcm-client.com/belimo/matching/40897/ef351458b324e0850a46407492c85cab,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40897
188,189,Resistors,Vishay,40897,MRS25000C1009F,MRS25000C1009FRP00,https://app.lcm-client.com/belimo/matching/40897/ef351458b324e0850a46407492c85f06,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40897
189,190,Resistors,Vishay,40898,MBB02070C1102F,MBB02070C1102FRP00,https://app.lcm-client.com/belimo/matching/40898/ef351458b324e0850a46407492c87371,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40898
190,191,Resistors,Vishay,40926,MRS25000C8202F,MRS25000C8202FRP00,https://app.lcm-client.com/belimo/matching/40926/ef351458b324e0850a46407492c9893e,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40926
191,192,Resistors,Vishay,40927,MBB02070C1003F,MBB02070C1003FRP00,https://app.lcm-client.com/belimo/matching/40927/ef351458b324e0850a46407492c99e8a,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40927
192,193,Resistors,Vishay,40927,MRS25000C1003F,MRS25000C1003FRP00,https://app.lcm-client.com/belimo/matching/40927/ef351458b324e0850a46407492c9aaf7,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40927
193,194,Resistors,Vishay,40934,MRS25000C6202F,MRS25000C6202FRP00,https://app.lcm-client.com/belimo/matching/40934/ef351458b324e0850a46407492c9d6ee,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40934
194,195,Resistors,Vishay,40941,MBB02070C5602F,MBB02070C5602FRP00,https://app.lcm-client.com/belimo/matching/40941/ef351458b324e0850a46407492c9f1f8,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40941
195,196,Resistors,Vishay,40941,MRS25000C5602F,MRS25000C5602FRP00,https://app.lcm-client.com/belimo/matching/40941/ef351458b324e0850a46407492c9f940,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40941
196,197,Resistors,Vishay,40949,MBB02070C1500F,MBB02070C1500FRP00,https://app.lcm-client.com/belimo/matching/40949/ef351458b324e0850a46407492ca0e61,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40949
197,198,Resistors,Vishay,40949,MRS25000C1500F,MRS25000C1500FRP00,https://app.lcm-client.com/belimo/matching/40949/ef351458b324e0850a46407492ca16be,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40949
198,199,Resistors,Vishay,41237-01102,MMA02040D1102C,MMA02040D1102CB300,https://app.lcm-client.com/belimo/matching/40949/ef351458b324e0850a46407492ca16be,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/41237-01102
199,200,Resistors,Vishay,41749-02200,CMB02070X2200G,CMB02070X2200GB700,https://app.lcm-client.com/belimo/matching/41749-02200/ef351458b324e0850a46407492cb2e74,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/41749-02200
200,201,Resistors,Vishay,41861-02001,MCS04020D2001B,MCS04020D2001BE000,https://app.lcm-client.com/belimo/matching/41861-02001/ef351458b324e0850a46407492cd04a3,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/41861-02001
201,202,Resistors,Vishay,41861-02053,MCS04020D2053B,MCS04020D2053BE000,https://app.lcm-client.com/belimo/matching/41861-02053/ef351458b324e0850a46407492cd3674,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/41861-02053
202,203,Resistors,Vishay,41861-02702,MCS04020D2702B,MCS04020D2702BE000,https://app.lcm-client.com/belimo/matching/41861-02702/ef351458b324e0850a46407492cd5b69,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/41861-02702
203,204,Resistors,Vishay,41861-06802,MCS04020D6802B,MCS04020D6802BE000,https://app.lcm-client.com/belimo/matching/41861-06802/ef351458b324e0850a46407492cd9fd4,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/41861-06802
204,205,Resistors,Vishay,47012-02550,MBB02070C2550F,MBB02070C2550FRP00,https://app.lcm-client.com/belimo/matching/47012-02550/ef351458b324e0850a46407492d6899c,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/47012-02550
205,206,Resistors,Vishay,47012-02550,MRS25000C2550F,MRS25000C2550FRP00,https://app.lcm-client.com/belimo/matching/47012-02550/ef351458b324e0850a46407492d68c0f,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-02550
206,207,Resistors,Vishay,47012-03303,MRS25000C3303F,MRS25000C3303FRP00,https://app.lcm-client.com/belimo/matching/47012-03303/ef351458b324e0850a46407492d6aa08,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-03303
207,208,Resistors,Vishay,47012-03308,MBB02070C3308F,MBB02070C3308FRP00,https://app.lcm-client.com/belimo/matching/47012-03308/ef351458b324e0850a46407492d6c42d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47012-03308
208,209,Resistors,Vishay,47012-03308,MRS25000C3308F,MRS25000C3308FRP00,https://app.lcm-client.com/belimo/matching/47012-03308/ef351458b324e0850a46407492d6d03b,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-03308
209,210,Resistors,Vishay,47012-03830,MBB02070C3830F,MBB02070C3830FRP00,https://app.lcm-client.com/belimo/matching/47012-03830/ef351458b324e0850a46407492d6eaad,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/47012-03830
210,211,Resistors,Vishay,47042,MBB02070C1503F,MBB02070C1503FRP00,https://app.lcm-client.com/belimo/matching/47042/ef351458b324e0850a46407492d86be4,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/47042
211,212,Resistors,Vishay,47355-01279,MBB02070C1279F,MBB02070C1279FRP00,https://app.lcm-client.com/belimo/matching/47355-01279/ef351458b324e0850a46407492db9a16,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01279
212,213,Resistors,Vishay,47355-01279,MRS25000C1279F,MRS25000C1279FRP00,https://app.lcm-client.com/belimo/matching/47355-01279/ef351458b324e0850a46407492dba77c,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01279
213,214,Resistors,Vishay,47355-01501,MRS25000C1501F,MRS25000C1501FRP00,https://app.lcm-client.com/belimo/matching/47355-01501/ef351458b324e0850a46407492dbc315,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01501
214,215,Resistors,Vishay,47355-01653,MRS25000C1653F,MRS25000C1653FRP00,https://app.lcm-client.com/belimo/matching/47355-01653/ef351458b324e0850a46407492dbf3fd,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01653
215,216,Resistors,Vishay,47355-02671,MRS25000C2671F,MRS25000C2671FRP00,https://app.lcm-client.com/belimo/matching/47355-02671/ef351458b324e0850a46407492dc5b8c,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-02671
216,217,Resistors,Vishay,47355-03301,MRS25000C3301F,MRS25000C3301FRP00,https://app.lcm-client.com/belimo/matching/47355-03301/ef351458b324e0850a46407492dc82bf,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-03301
217,218,Resistors,Vishay,47355-05609,MBB02070C5609F,MBB02070C5609FRP00,https://app.lcm-client.com/belimo/matching/47355-05609/ef351458b324e0850a46407492dcab28,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-05609
218,219,Resistors,Vishay,47355-05609,MRS25000C5609F,MRS25000C5609FRP00,https://app.lcm-client.com/belimo/matching/47355-05609/ef351458b324e0850a46407492dcb421,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-05609
219,220,Resistors,Vishay,47355-05762,MBB02070C5762F,MBB02070C5762FRP00,https://app.lcm-client.com/belimo/matching/47355-05762/ef351458b324e0850a46407492dcdf45,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-05762
220,221,Resistors,Vishay,40617-01800,SMM02040C1800F,SMM02040C1800FB000,https://app.lcm-client.com/belimo/matching/40617-01800/a57dd45b8b8bfbbc6b72118464e48be7,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01800
221,222,Resistors,Vishay,40617-03001,MMA02040C3001F,MMA02040C3001FB000,https://app.lcm-client.com/belimo/matching/40617-03001/a57dd45b8b8bfbbc6b72118464e73cce,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03001
222,223,Resistors,Vishay,40617-03001,SMM02040C3001F,SMM02040C3001FB000,https://app.lcm-client.com/belimo/matching/40617-03001/a57dd45b8b8bfbbc6b72118464e74406,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03001
223,224,Resistors,Vishay,40617-03008,MMA02040C3008F,MMA02040C3008FB000,https://app.lcm-client.com/belimo/matching/40617-03008/a57dd45b8b8bfbbc6b72118464e79b6e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03008
224,225,Resistors,Vishay,40617-03008,SMM02040C3008F,SMM02040C3008FB000,https://app.lcm-client.com/belimo/matching/40617-03008/a57dd45b8b8bfbbc6b72118464e7a30e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03008
225,226,Resistors,Vishay,40617-03301,MMA02040C3301F,MMA02040C3301FB000,https://app.lcm-client.com/belimo/matching/40617-03301/a57dd45b8b8bfbbc6b72118464e81354,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03301
226,227,Resistors,Vishay,40617-03301,SMM02040C3301F,SMM02040C3301FB000,https://app.lcm-client.com/belimo/matching/40617-03301/a57dd45b8b8bfbbc6b72118464e818d6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03301
227,228,Resistors,Vishay,40617-03303,MMA02040C3303F,MMA02040C3303FB000,https://app.lcm-client.com/belimo/matching/40617-03303/a57dd45b8b8bfbbc6b72118464e88cee,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03303
228,229,Resistors,Vishay,40617-03303,SMM02040C3303F,SMM02040C3303FB000,https://app.lcm-client.com/belimo/matching/40617-03303/a57dd45b8b8bfbbc6b72118464e896d0,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03303
229,230,Resistors,Vishay,40617-03901,MMA02040C3901F,MMA02040C3901FB000,https://app.lcm-client.com/belimo/matching/40617-03901/a57dd45b8b8bfbbc6b72118464e90c53,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03901
230,231,Resistors,Vishay,47001,MBB02070C1202F,MBB02070C1202FRP00,https://app.lcm-client.com/belimo/matching/47001/c8cb570d5127ae96aaae8eee665a9f99,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47001
231,232,Resistors,Vishay,47002,MBB02070C1000F,MBB02070C1000FRP00,https://app.lcm-client.com/belimo/matching/47002/c8cb570d5127ae96aaae8eee665abee6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47002
232,233,Resistors,Vishay,47004,MBB02070C1804F,MBB02070C1804FRP00,https://app.lcm-client.com/belimo/matching/47004/c8cb570d5127ae96aaae8eee665ae642,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47004
233,234,Resistors,Vishay,47007,MBB02070C3002F,MBB02070C3002FRP00,https://app.lcm-client.com/belimo/matching/47007/c8cb570d5127ae96aaae8eee665b0d45,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47007
234,235,Resistors,Vishay,47008,MBB02070C4701F,MBB02070C4701FRP00,https://app.lcm-client.com/belimo/matching/47008/c8cb570d5127ae96aaae8eee665b34df,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47008
235,236,Resistors,Vishay,47011,MBB02070C1502F,MBB02070C1502FRP00,https://app.lcm-client.com/belimo/matching/47011/c8cb570d5127ae96aaae8eee665b5e12,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47011
236,237,Resistors,Vishay,47012-01001,MBB02070C1001F,MBB02070C1001FRP00,https://app.lcm-client.com/belimo/matching/47012-01001/c8cb570d5127ae96aaae8eee665b7c87,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47012-01001
237,238,Resistors,Vishay,47012-01001,MRS25000C1001F,MRS25000C1001FRP00,https://app.lcm-client.com/belimo/matching/47012-01001/c8cb570d5127ae96aaae8eee665b7ef3,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-01001
238,239,Resistors,Vishay,47012-02371,MBB02070C2371F,MBB02070C2371FRP00,https://app.lcm-client.com/belimo/matching/47012-02371/c8cb570d5127ae96aaae8eee665b92cf,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47012-02371
239,240,Resistors,Vishay,40602-01100,MMB02070C1100F,MMB02070C1100FB700,https://app.lcm-client.com/belimo/matching/40602-01100/ef351458b324e0850a46407492a0f34b,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01100
240,241,Resistors,Vishay,40602-02491,SMM02070C2491F,SMM02070C2491FBP00,https://app.lcm-client.com/belimo/matching/40602-02491/ef351458b324e0850a46407492a32d66,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02491
241,242,Resistors,Vishay,40602-02703,MMB02070C2703F,MMB02070C2703FB700,https://app.lcm-client.com/belimo/matching/40602-02703/ef351458b324e0850a46407492a36b57,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02703
242,243,Resistors,Vishay,40602-02703,SMM02070C2703F,SMM02070C2703FBS00,https://app.lcm-client.com/belimo/matching/40602-02703/ef351458b324e0850a46407492a3748f,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02703
243,244,Resistors,Vishay,40602-03000,MMB02070C3000F,MMB02070C3000FB700,https://app.lcm-client.com/belimo/matching/40602-03000/ef351458b324e0850a46407492a3b4b3,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-03000
244,245,Resistors,Vishay,40602-03000,SMM02070C3000F,SMM02070C3000FBS00,https://app.lcm-client.com/belimo/matching/40602-03000/ef351458b324e0850a46407492a3be47,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-03000
245,246,Resistors,Vishay,40602-03303,MMB02070C3303F,MMB02070C3303FB700,https://app.lcm-client.com/belimo/matching/40602-03303/ef351458b324e0850a46407492a3dded,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-03303
246,247,Resistors,Vishay,40602-03303,SMM02070C3303F,SMM02070C3303FBS00,https://app.lcm-client.com/belimo/matching/40602-03303/ef351458b324e0850a46407492a3e67a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-03303
247,248,Resistors,Vishay,40602-04700,MMB02070C4700F,MMB02070C4700FB700,https://app.lcm-client.com/belimo/matching/40602-04700/ef351458b324e0850a46407492a51eab,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04700
248,249,Resistors,Vishay,40602-04700,SMM02070C4700F,SMM02070C4700FBP00,https://app.lcm-client.com/belimo/matching/40602-04700/ef351458b324e0850a46407492a52341,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04700
249,250,Resistors,Vishay,40617-01108,MMA02040C1108F,MMA02040C1108FB000,https://app.lcm-client.com/belimo/matching/40617-01108/ef351458b324e0850a46407492bb453c,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01108
250,251,Resistors,Vishay,40617-02002,SMM02040C2002F,SMM02040C2002FB000,https://app.lcm-client.com/belimo/matching/40617-02002/ef351458b324e0850a46407492bed203,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02002
251,252,Resistors,Vishay,40617-02008,MMA02040C2008F,MMA02040C2008FB000,https://app.lcm-client.com/belimo/matching/40617-02008/ef351458b324e0850a46407492bf3690,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02008
252,253,Resistors,Vishay,40617-02008,SMM02040C2008F,SMM02040C2008FB000,https://app.lcm-client.com/belimo/matching/40617-02008/ef351458b324e0850a46407492bf3890,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02008
253,254,Resistors,Vishay,40617-02201,MMA02040C2001F,MMA02040C2001FB000,https://app.lcm-client.com/belimo/matching/40617-02201/ef351458b324e0850a46407492bfa0e4,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02201
254,255,Resistors,Vishay,40617-02201,SMM02040C2201F,SMM02040C2201FB000,https://app.lcm-client.com/belimo/matching/40617-02201/ef351458b324e0850a46407492bfaa90,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02201
255,256,Resistors,Vishay,40617-02202,SMM02040C2202F,SMM02040C2202FB000,https://app.lcm-client.com/belimo/matching/40617-02202/ef351458b324e0850a46407492c02755,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02202
256,257,Resistors,Vishay,40617-02402,MMA02040C2402F,MMA02040C2402FB000,https://app.lcm-client.com/belimo/matching/40617-02402/ef351458b324e0850a46407492c086bf,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02402
257,258,Resistors,Vishay,40617-02402,SMM02040C2402F,SMM02040C2402FB000,https://app.lcm-client.com/belimo/matching/40617-02402/ef351458b324e0850a46407492c09313,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02402
258,259,Resistors,Vishay,40617-02408,MMA02040C2408F,MMA02040C2408FB000,https://app.lcm-client.com/belimo/matching/40617-02408/ef351458b324e0850a46407492c0cc99,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02408
259,260,Resistors,Vishay,40862,MBB02070C2203F,MBB02070C2203FRP00,https://app.lcm-client.com/belimo/matching/40862/ef351458b324e0850a46407492c74003,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40862
260,261,Resistors,Vishay,40898,MRS25000C1102F,MRS25000C1102FRP00,https://app.lcm-client.com/belimo/matching/40898/ef351458b324e0850a46407492c879f0,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40898
261,262,Resistors,Vishay,40901,MBB02070C4992F,MBB02070C4992FRP00,https://app.lcm-client.com/belimo/matching/40901/ef351458b324e0850a46407492c8980e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40901
262,263,Resistors,Vishay,40901,MRS25000C4992F,MRS25000C4992FRP00,https://app.lcm-client.com/belimo/matching/40901/ef351458b324e0850a46407492c8a5f3,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40901
263,264,Resistors,Vishay,40913,MBB02070C2201F,MBB02070C2201FRP00,https://app.lcm-client.com/belimo/matching/40913/ef351458b324e0850a46407492c8cd11,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40913
264,265,Resistors,Vishay,40913,MRS25000C2201F,MRS25000C2201FRP00,https://app.lcm-client.com/belimo/matching/40913/ef351458b324e0850a46407492c8ced5,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40913
265,266,Resistors,Vishay,40915,MRS25000C6802F,MRS25000C6802FRP00,https://app.lcm-client.com/belimo/matching/40915/ef351458b324e0850a46407492c8f08b,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40915
266,267,Resistors,Vishay,40919,MRS25000C8201F,MRS25000C8201FRP00,https://app.lcm-client.com/belimo/matching/40919/ef351458b324e0850a46407492c91498,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40919
267,268,Resistors,Vishay,40924,MBB02070C1002F,MBB02070C1002FRP00,https://app.lcm-client.com/belimo/matching/40924/ef351458b324e0850a46407492c95e69,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40924
268,269,Resistors,Vishay,40924,MRS25000C1002F,MRS25000C1002FRP00,https://app.lcm-client.com/belimo/matching/40924/ef351458b324e0850a46407492c9667f,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40924
269,270,Resistors,Vishay,41861-01003,MCS04020D1003B,MCS04020D1003BE500,https://app.lcm-client.com/belimo/matching/41861-01003/ef351458b324e0850a46407492ccbe77,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/41861-01003
270,271,Resistors,Vishay,47012-03830,MRS25000C3830F,MRS25000C3830FRP00,https://app.lcm-client.com/belimo/matching/47012-03830/ef351458b324e0850a46407492d6f482,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-03830
271,272,Resistors,Vishay,47012-04531,MRS25000C4531F,MRS25000C4531FRP00,https://app.lcm-client.com/belimo/matching/47012-04531/ef351458b324e0850a46407492d71357,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-04531
272,273,Resistors,Vishay,47012-06192,MBB02070C6192F,MBB02070C6192FRP00,https://app.lcm-client.com/belimo/matching/47012-06192/ef351458b324e0850a46407492d72930,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47012-06192
273,274,Resistors,Vishay,47012-06192,MRS25000C6192F,MRS25000C6192FRP00,https://app.lcm-client.com/belimo/matching/47012-06192/ef351458b324e0850a46407492d735ec,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-06192
274,275,Resistors,Vishay,47013,MBB02070C5600F,MBB02070C5600FRP00,https://app.lcm-client.com/belimo/matching/47013/ef351458b324e0850a46407492d77c2d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47013
275,276,Resistors,Vishay,47016,MBB02070C2102F,MBB02070C2102FRP00,https://app.lcm-client.com/belimo/matching/47016/ef351458b324e0850a46407492d79a35,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47016
276,277,Resistors,Vishay,47017,MBB02070C2802F,MBB02070C2802FRP00,https://app.lcm-client.com/belimo/matching/47017/ef351458b324e0850a46407492d7bc7e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47017
277,278,Resistors,Vishay,47030,MBB02070C1004F,MBB02070C1004FRP00,https://app.lcm-client.com/belimo/matching/47030/ef351458b324e0850a46407492d7ea45,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47030
278,279,Resistors,Vishay,47035,MBB02070C1802F,MBB02070C1802FRP00,https://app.lcm-client.com/belimo/matching/47035/ef351458b324e0850a46407492d82ea5,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47035
279,280,Resistors,Vishay,47355-01208,MRS25000C1208F,MRS25000C1208FRP00,https://app.lcm-client.com/belimo/matching/47355-01208/a57dd45b8b8bfbbc6b72118464fc8178,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01208
280,281,Resistors,Vishay,47355-01209,MBB02070C1209F,MBB02070C1209FRP00,https://app.lcm-client.com/belimo/matching/47355-01209/a57dd45b8b8bfbbc6b72118464fca02d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01209
281,282,Resistors,Vishay,47355-01209,MRS25000C1209F,MRS25000C1209FRP00,https://app.lcm-client.com/belimo/matching/47355-01209/a57dd45b8b8bfbbc6b72118464fcacd1,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01209
282,283,Resistors,Vishay,40617-01001,MMA02040C1001F,MMA02040C1001FB000,https://app.lcm-client.com/belimo/matching/40617-01001/c8cb570d5127ae96aaae8eee66425d73,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01001
283,284,Resistors,Vishay,40617-01001,SMM02040C1001F,SMM02040C1001FB000,https://app.lcm-client.com/belimo/matching/40617-01001/c8cb570d5127ae96aaae8eee664273bd,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01001
284,285,Resistors,Vishay,40617-04701,MMA02040C4701F,MMA02040C4701FB000,https://app.lcm-client.com/belimo/matching/40617-04701/c8cb570d5127ae96aaae8eee66480626,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04701
285,286,Resistors,Vishay,40617-04701,SMM02040C4701F,SMM02040C4701FB000,https://app.lcm-client.com/belimo/matching/40617-04701/c8cb570d5127ae96aaae8eee66480c80,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04701
286,287,Resistors,Vishay,40617-04708,MMA02040C4708F,MMA02040C4708FB000,https://app.lcm-client.com/belimo/matching/40617-04708/c8cb570d5127ae96aaae8eee66486f7f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04708
287,288,Resistors,Vishay,40617-04708,SMM02040C4708F,SMM02040C4708FB000,https://app.lcm-client.com/belimo/matching/40617-04708/c8cb570d5127ae96aaae8eee6648785d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04708
288,289,Resistors,Vishay,40617-04992,MMA02040C4992F,MMA02040C4992FB000,https://app.lcm-client.com/belimo/matching/40617-04992/c8cb570d5127ae96aaae8eee6648d911,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04992
289,290,Resistors,Vishay,40602-04701,MMB02070C4701F,MMB02070C4701FB700,https://app.lcm-client.com/belimo/matching/40602-04701/ef351458b324e0850a46407492a55a67,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04701
290,291,Resistors,Vishay,40602-09100,SMM02070C9100F,SMM02070C9100FBS00,https://app.lcm-client.com/belimo/matching/40602-09100/ef351458b324e0850a46407492a7a870,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-09100
291,292,Resistors,Vishay,40617-01002,MMA02040C1002F,MMA02040C1002FB000,https://app.lcm-client.com/belimo/matching/40617-01002/ef351458b324e0850a46407492b97ffb,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01002
292,293,Resistors,Vishay,40617-01002,SMM02040C1002F,SMM02040C1002FB000,https://app.lcm-client.com/belimo/matching/40617-01002/ef351458b324e0850a46407492b98f3c,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01002
293,294,Resistors,Vishay,40617-01003,MMA02040C1003F,MMA02040C1003FB000,https://app.lcm-client.com/belimo/matching/40617-01003/ef351458b324e0850a46407492b9d7bd,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01003
294,295,Resistors,Vishay,40617-01003,SMM02040C1003F,SMM02040C1003FB000,https://app.lcm-client.com/belimo/matching/40617-01003/ef351458b324e0850a46407492b9e217,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01003
295,296,Resistors,Vishay,40617-01008,MMA02040C1008F,MMA02040C1008FB000,https://app.lcm-client.com/belimo/matching/40617-01008/ef351458b324e0850a46407492ba4463,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01008
296,297,Resistors,Vishay,40617-01008,SMM02040C1008F,SMM02040C1008FB000,https://app.lcm-client.com/belimo/matching/40617-01008/ef351458b324e0850a46407492ba493f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01008
297,298,Resistors,Vishay,40617-01009,MMA02040C1009F,MMA02040C1009FB000,https://app.lcm-client.com/belimo/matching/40617-01009/ef351458b324e0850a46407492baaa84,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01009
298,299,Resistors,Vishay,40617-01009,SMM02040C1009F,SMM02040C1009FB000,https://app.lcm-client.com/belimo/matching/40617-01009/ef351458b324e0850a46407492bab791,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01009
299,300,Resistors,Vishay,40926,MBB02070C8202F,MBB02070C8202FRP00,https://app.lcm-client.com/belimo/matching/40926/ef351458b324e0850a46407492c97f9f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40926
300,301,Resistors,Vishay,41749-06800,CMB02070X6800G,CMB02070X6800GB700,https://app.lcm-client.com/belimo/matching/41749-06800/ef351458b324e0850a46407492cb3c37,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/41749-06800
301,302,Resistors,Vishay,41770-02401,CRCW12182K40FK,CRCW12182K40FKEK,https://app.lcm-client.com/belimo/matching/41770-02401/ef351458b324e0850a46407492cb4b4c,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41770-02401
302,303,Resistors,Vishay,41770-02401,RCL12182K40FK,RCL12182K40FKEK,https://app.lcm-client.com/belimo/matching/41770-02401/ef351458b324e0850a46407492cb5a01,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41770-02401
303,304,Resistors,Vishay,41770-02709,CRCW121827R0FK,CRCW121827R0FKEK,https://app.lcm-client.com/belimo/matching/41770-02709/ef351458b324e0850a46407492cb724c,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41770-02709
304,305,Resistors,Vishay,41770-02709,RCL121827R0FK,RCL121827R0FKEK,https://app.lcm-client.com/belimo/matching/41770-02709/ef351458b324e0850a46407492cb7c46,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41770-02709
305,306,Resistors,Vishay,41770-09100,CRCW1218910RFK,CRCW1218910RFKEK,https://app.lcm-client.com/belimo/matching/41770-09100/ef351458b324e0850a46407492cb859c,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41770-09100
306,307,Resistors,Vishay,41770-09100,RCL1218910RFK,RCL1218910RFKEK,https://app.lcm-client.com/belimo/matching/41770-09100/ef351458b324e0850a46407492cb8df7,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41770-09100
307,308,Resistors,Vishay,41807-08208,CRCW25128R20JN,CRCW25128R20JNEG,https://app.lcm-client.com/belimo/matching/41807-08208/ef351458b324e0850a46407492cc6d55,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41807-08208
308,309,Resistors,Vishay,41857-04700,CMA02040X4700G,CMA02040X4700GB300,https://app.lcm-client.com/belimo/matching/41857-04700/ef351458b324e0850a46407492cc8de1,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/41857-04700
309,310,Resistors,Vishay,40550,MBB0207IC1203F,MBB0207IC1203FRP00,https://app.lcm-client.com/belimo/matching/40550/ef351458b324e0850a464074929fa8a6,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40550
310,311,Resistors,Vishay,40550,MRS25000C1203F,MRS25000C1203FRP00,https://app.lcm-client.com/belimo/matching/40550/ef351458b324e0850a464074929faa94,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40550
311,312,Resistors,Vishay,40602-01001,MMB02070C1001F,MMB02070C1001FB700,https://app.lcm-client.com/belimo/matching/40602-01001/ef351458b324e0850a464074929fd84b,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01001
312,313,Resistors,Vishay,40602-01001,SMM02070C1001F,SMM02070C1001FBS00,https://app.lcm-client.com/belimo/matching/40602-01001/ef351458b324e0850a464074929fe654,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01001
313,314,Resistors,Vishay,40602-01002,MMB02070C1002F,MMB02070C1002FB700,https://app.lcm-client.com/belimo/matching/40602-01002/ef351458b324e0850a46407492a00ad0,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01002
314,315,Resistors,Vishay,40602-01002,SMM02070C1002F,SMM02070C1002FBS00,https://app.lcm-client.com/belimo/matching/40602-01002/ef351458b324e0850a46407492a00ede,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01002
315,316,Resistors,Vishay,40602-01004,MMB02070C1004F,MMB02070C1004FB700,https://app.lcm-client.com/belimo/matching/40602-01004/ef351458b324e0850a46407492a03473,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01004
316,317,Resistors,Vishay,40602-01004,SMM02070C1004F,SMM02070C1004FBS00,https://app.lcm-client.com/belimo/matching/40602-01004/ef351458b324e0850a46407492a03d9c,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01004
317,318,Resistors,Vishay,40861,MBB02070C2202F,MBB02070C2202FRP00,https://app.lcm-client.com/belimo/matching/40861/ef351458b324e0850a46407492c733f0,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40861
318,319,Resistors,Vishay,40861,MRS25000C2202F,MRS25000C2202FRP00,https://app.lcm-client.com/belimo/matching/40861/ef351458b324e0850a46407492c73735,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40861
319,320,Resistors,Vishay,47038,MBB02070C1103F,MBB02070C1103FRP00,https://app.lcm-client.com/belimo/matching/47038/ef351458b324e0850a46407492d84967,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47038
320,321,Resistors,Vishay,47355-05762,MRS25000C5762F,MRS25000C5762FRP00,https://app.lcm-client.com/belimo/matching/47355-05762/ef351458b324e0850a46407492dceb65,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-05762
321,322,Resistors,Vishay,47355-07503,MBB02070C7503F,MBB02070C7503FRP00,https://app.lcm-client.com/belimo/matching/47355-07503/ef351458b324e0850a46407492dd0a2c,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-07503
322,323,Resistors,Vishay,47355-07503,MRS25000C7503F,MRS25000C7503FRP00,https://app.lcm-client.com/belimo/matching/47355-07503/ef351458b324e0850a46407492dd1062,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-07503
323,324,Resistors,Vishay,47355-09102,MBB02070C9102F,MBB02070C9102FRP00,https://app.lcm-client.com/belimo/matching/47355-09102/ef351458b324e0850a46407492dd3bb8,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-09102
324,325,Resistors,Vishay,47355-09102,MRS25000C9102F,MRS25000C9102FRP00,https://app.lcm-client.com/belimo/matching/47355-09102/ef351458b324e0850a46407492dd4037,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-09102
325,326,Resistors,Vishay,47355-42200,MBB02070C2200F,MBB02070C2200FRP00,https://app.lcm-client.com/belimo/matching/47355-42200/ef351458b324e0850a46407492dd65ba,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-42200
326,327,Resistors,Vishay,47355-42200,MRS25000C2200F,MRS25000C2200FRP00,https://app.lcm-client.com/belimo/matching/47355-42200/ef351458b324e0850a46407492dd696b,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-42200
327,328,Resistors,Vishay,40617-02408,SMM02040C2408F,SMM02040C2408FB000,https://app.lcm-client.com/belimo/matching/40617-02408/ef351458b324e0850a46407492c0d2b0,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02408
328,329,Resistors,Vishay,40852,MBB02070C4702F,MBB02070C4702FRP00,https://app.lcm-client.com/belimo/matching/40852/ef351458b324e0850a46407492c6d60f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40852
329,330,Resistors,Vishay,40852,MRS25000C4702F,MRS25000C4702FRP00,https://app.lcm-client.com/belimo/matching/40852/ef351458b324e0850a46407492c6e1c7,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40852
330,331,Resistors,Vishay,40853,MBB02070C5902F,MBB02070C5902FRP00,https://app.lcm-client.com/belimo/matching/40853/ef351458b324e0850a46407492c703d9,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40853
331,332,Resistors,Vishay,40853,MRS25000C5902F,MRS25000C5902FRP00,https://app.lcm-client.com/belimo/matching/40853/ef351458b324e0850a46407492c70733,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40853
332,333,Resistors,Vishay,40860,MBB02070C3001F,MBB02070C3001FRP00,https://app.lcm-client.com/belimo/matching/40860/ef351458b324e0850a46407492c71d0c,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40860
333,334,Resistors,Vishay,40860,MRS25000C3001F,MRS25000C3001FRP00,https://app.lcm-client.com/belimo/matching/40860/ef351458b324e0850a46407492c72721,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40860
334,335,Resistors,Vishay,47355-44700,MRS25000C4700F,MRS25000C4700FRP00,https://app.lcm-client.com/belimo/matching/47355-44700/ef351458b324e0850a46407492dd925e,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-44700
335,336,Resistors,TT Electronics,40617-01204,WRM0204C1M2FI,WRM0204C-1M2FI,https://app.lcm-client.com/belimo/matching/40617-01204/a57dd45b8b8bfbbc6b72118464e1e61b,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01204
336,337,Resistors,TT Electronics,40617-01211,WRM0204C1K21FI,WRM0204C-470RFI,https://app.lcm-client.com/belimo/matching/40617-01211/a57dd45b8b8bfbbc6b72118464e2c13b,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01211
337,338,Resistors,TT Electronics,40617-01800,WRM0204C180RFI,WRM0204C180RFI,https://app.lcm-client.com/belimo/matching/40617-01800/a57dd45b8b8bfbbc6b72118464e475a3,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01800
338,339,Resistors,TT Electronics,40617-01801,WRM0204C1K8FI,WRM0204C-1K8FI,https://app.lcm-client.com/belimo/matching/40617-01801/a57dd45b8b8bfbbc6b72118464e4ef28,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01801
339,340,Resistors,TT Electronics,40617-03303,WRM0204C330KFI,WRM0204C-330KFI,https://app.lcm-client.com/belimo/matching/40617-03303/a57dd45b8b8bfbbc6b72118464e87aed,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03303
340,341,Resistors,TT Electronics,40617-04700,WRM0204C470RFI,WRM0204C-470RFI,https://app.lcm-client.com/belimo/matching/40617-04700/a57dd45b8b8bfbbc6b72118464ea09cb,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04700
341,342,Resistors,TT Electronics,40615-02002,PCF1206-R-20KB,PCF1206R-20KBT1 ,https://app.lcm-client.com/belimo/matching/40615-02002/c8cb570d5127ae96aaae8eee663f84a2,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02002
342,343,Resistors,TT Electronics,40615-02202,PCF1206-R-22KB,PCF1206R-22KBT1,https://app.lcm-client.com/belimo/matching/40615-02202/c8cb570d5127ae96aaae8eee663fadb4,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02202
343,344,Resistors,TT Electronics,40615-02372,PCF1206-R-56KB,PCF1206R-56KBT1,https://app.lcm-client.com/belimo/matching/40615-02202/c8cb570d5127ae96aaae8eee663fadb4,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02372
344,345,Resistors,TT Electronics,40615-02402,PCF1206-R-24KB,PCF1206R-24KBT1,https://app.lcm-client.com/belimo/matching/40615-02402/c8cb570d5127ae96aaae8eee664021c3,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02402
345,346,Resistors,TT Electronics,40615-02492,PCF1206-R-24K9B,PCF1206R-24K9BT1,https://app.lcm-client.com/belimo/matching/40615-02492/c8cb570d5127ae96aaae8eee66405af8,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02492
346,347,Resistors,TT Electronics,40615-02552,PCF1206-R-25K5B,PCF1206R-25K5BT1,https://app.lcm-client.com/belimo/matching/40615-02552/c8cb570d5127ae96aaae8eee664087ff,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02552
347,348,Resistors,TT Electronics,40615-02702,PCF1206-R-27KB,PCF1206R-27KBT1,https://app.lcm-client.com/belimo/matching/40615-02702/c8cb570d5127ae96aaae8eee6640c2eb,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02702
348,349,Resistors,TT Electronics,40615-03922,PCF1206-R-39K2B,PCF1206R-39K2BT1,https://app.lcm-client.com/belimo/matching/40615-03922/c8cb570d5127ae96aaae8eee6640ff82,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-03922
349,350,Resistors,TT Electronics,40615-06812,PCF1206-R-68K1B,PCF1206R-68K1BT1,https://app.lcm-client.com/belimo/matching/40615-06812/c8cb570d5127ae96aaae8eee6641618e,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-06812
350,351,Resistors,TT Electronics,40615-06982,PCF1206-R-69K8B,PCF1206R-69K8BT1,https://app.lcm-client.com/belimo/matching/40615-06982/c8cb570d5127ae96aaae8eee66419452,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-06982
351,352,Resistors,TT Electronics,40615-08201,PCF1206-R-8K2B,PCF1206R-8K2BT1,https://app.lcm-client.com/belimo/matching/40615-08201/c8cb570d5127ae96aaae8eee6641c3da,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-08201
352,353,Resistors,TT Electronics,40617-01001,WRM0204C1KFI,WRM0204C-1K0FI,https://app.lcm-client.com/belimo/matching/40617-01001/c8cb570d5127ae96aaae8eee66425552,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01001
353,354,Resistors,TT Electronics,40617-04701,WRM0204C4K7FI,WRM0204C-4K7FI,https://app.lcm-client.com/belimo/matching/40617-04701/c8cb570d5127ae96aaae8eee6647ff02,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04701
354,355,Resistors,TT Electronics,40617-04992,WRM0204C49K9FI,WRM0204C-49K9FI,https://app.lcm-client.com/belimo/matching/40617-04992/c8cb570d5127ae96aaae8eee6648bd7f,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04992
355,356,Resistors,TT Electronics,40617-05109,WRM0204C51RFI,WRM0204C-51RFI,https://app.lcm-client.com/belimo/matching/40617-05109/c8cb570d5127ae96aaae8eee664944ae,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-05109
356,357,Resistors,TT Electronics,40617-05601,WRM0204C5K6FI,WRM0204C-5K6FI,https://app.lcm-client.com/belimo/matching/40617-05601/c8cb570d5127ae96aaae8eee6649b46b,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-05601
357,358,Resistors,TT Electronics,40617-06800,WRM0204C680RFI,WRM0204C-680RFI,https://app.lcm-client.com/belimo/matching/40617-06800/c8cb570d5127ae96aaae8eee664a97c6,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06800
358,359,Resistors,TT Electronics,40617-06801,WRM0204C6K8FI,WRM0204C-6K8FI,https://app.lcm-client.com/belimo/matching/40617-06801/c8cb570d5127ae96aaae8eee664b8a2f,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06801
359,360,Resistors,TT Electronics,40617-07502,WRM0204C75KFI,WRM0204C-75KFI,https://app.lcm-client.com/belimo/matching/40617-07502/c8cb570d5127ae96aaae8eee664c65a4,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-07502
360,361,Resistors,TT Electronics,40602-01001,WRM0207HPC-1K0F,WRM0207HPC-1K0FT2,https://app.lcm-client.com/belimo/matching/40602-01001/ef351458b324e0850a464074929fc757,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01001
361,362,Resistors,TT Electronics,40602-01002,WRM0207HPC-10KF,WRM0207HPC-10KFT2,https://app.lcm-client.com/belimo/matching/40602-01002/ef351458b324e0850a46407492a0014a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01002
362,363,Resistors,TT Electronics,40602-01004,WRM0207HPC-1M0F,WRM0207HPC-1M0FT2,https://app.lcm-client.com/belimo/matching/40602-01004/ef351458b324e0850a46407492a0258e,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01004
363,364,Resistors,TT Electronics,40602-01100,WRM0207HPC-110RF,WRM0207HPC-110RFT2,https://app.lcm-client.com/belimo/matching/40602-01100/ef351458b324e0850a46407492a0d9d9,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01100
364,365,Resistors,TT Electronics,40602-01501,WRM0207HPC-1K5F,WRM0207HPC-1K5FT2,https://app.lcm-client.com/belimo/matching/40602-01501/ef351458b324e0850a46407492a118c9,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01501
365,366,Resistors,TT Electronics,40602-01503,WRM0207HPC-150KF,WRM0207HPC-150KFT2,https://app.lcm-client.com/belimo/matching/40602-01503/ef351458b324e0850a46407492a15498,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01503
366,367,Resistors,TT Electronics,40602-01801,WRM0207HPC-1K8F,WRM0207HPC-1K8FT2,https://app.lcm-client.com/belimo/matching/40602-01801/ef351458b324e0850a46407492a19513,ok,Automotive,Yes,y,Requires Update,https://app.lcm-client.com/belimo/part/40602-01801
367,368,Resistors,TT Electronics,40602-02201,WRM0207HPC-2K2F,WRM0207HPC-2K2FT2,https://app.lcm-client.com/belimo/matching/40602-02201/ef351458b324e0850a46407492a1c7a2,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02201
368,369,Resistors,TT Electronics,40602-02203,WRM0207HPC-220KF,WRM0207HPC-220KFT2,https://app.lcm-client.com/belimo/matching/40602-02203/ef351458b324e0850a46407492a208f7,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02203
369,370,Resistors,TT Electronics,40602-02401,WRM0207HPC-2K4F,WRM0207HPC-2K4FT2,https://app.lcm-client.com/belimo/matching/40602-02401/ef351458b324e0850a46407492a27710,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02401
370,371,Resistors,TT Electronics,40602-02402,WRM0207HPC-24KF,WRM0207HPC-24KFT2,https://app.lcm-client.com/belimo/matching/40602-02402/ef351458b324e0850a46407492a2b96e,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02402
371,372,Resistors,TT Electronics,40602-02403,WRM0207HPC-240KF,WRM0207HPC-240KFT2,https://app.lcm-client.com/belimo/matching/40602-02403/ef351458b324e0850a46407492a2ea6d,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02403
372,373,Resistors,TT Electronics,40602-02491,WRM0207HPC-2K49F,WRM0207HPC-2K49FT2,https://app.lcm-client.com/belimo/matching/40602-02491/ef351458b324e0850a46407492a30f58,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02491
373,374,Resistors,TT Electronics,40602-02703,WRM0207HPC-270KF,WRM0207HPC-270KFT2,https://app.lcm-client.com/belimo/matching/40602-02703/ef351458b324e0850a46407492a35ee4,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02703
374,375,Resistors,TT Electronics,40602-03000,WRM0207HPC-300RF,WRM0207HPC-300RFT2,https://app.lcm-client.com/belimo/matching/40602-03000/ef351458b324e0850a46407492a39ce1,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-03000
375,376,Resistors,TT Electronics,40602-03303,WRM0207HPC-330KF,WRM0207HPC-330KFT2,https://app.lcm-client.com/belimo/matching/40602-03303/ef351458b324e0850a46407492a3cdcf,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-03303
376,377,Resistors,TT Electronics,40602-04700,WRM0207HPC-470RF,WRM0207HPC-470RFT2,https://app.lcm-client.com/belimo/matching/40602-04700/ef351458b324e0850a46407492a51cfd,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04700
377,378,Resistors,TT Electronics,40602-04701,WRM0207HPC-4K7F,WRM0207HPC-4K7FT2,https://app.lcm-client.com/belimo/matching/40602-04701/ef351458b324e0850a46407492a54e73,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04701
378,379,Resistors,TT Electronics,40602-04702,WRM0207HPC-47KF,WRM0207HPC-47KFT2,https://app.lcm-client.com/belimo/matching/40602-04702/ef351458b324e0850a46407492a58a5c,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04702
379,380,Resistors,TT Electronics,40602-04703,WRM0207HPC-470KF,WRM0207HPC-470KFT2,https://app.lcm-client.com/belimo/matching/40602-04703/ef351458b324e0850a46407492a5b923,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04703
380,381,Resistors,TT Electronics,40602-05100,WRM0207HPC-510RF,WRM0207HPC-510RFT2,https://app.lcm-client.com/belimo/matching/40602-05100/ef351458b324e0850a46407492a6084d,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05100
381,382,Resistors,TT Electronics,40602-05603,WRM0207HPC-560KF,WRM0207HPC-560KFT2,https://app.lcm-client.com/belimo/matching/40602-05603/ef351458b324e0850a46407492a64c72,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05603
382,383,Resistors,TT Electronics,40602-06209,WRM0207HPC-62RF,WRM0207HPC-62RFT2,https://app.lcm-client.com/belimo/matching/40602-06209/ef351458b324e0850a46407492a68b65,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-06209
383,384,Resistors,TT Electronics,40602-07502,WRM0207HPC-75KF,WRM0207HPC-75KFT2,https://app.lcm-client.com/belimo/matching/40602-07502/ef351458b324e0850a46407492a6d6ab,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-07502
384,385,Resistors,TT Electronics,40602-08063,WRM0207HPC-806KF,WRM0207HPC-806KFT2,https://app.lcm-client.com/belimo/matching/40602-08063/ef351458b324e0850a46407492a71c92,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08063
385,386,Resistors,TT Electronics,40602-08202,WRM0207HPC-82KF,WRM0207HPC-82KFT2,https://app.lcm-client.com/belimo/matching/40602-08202/ef351458b324e0850a46407492a75ccf,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08202
386,387,Resistors,TT Electronics,40602-09100,WRM0207HPC-910RF,WRM0207HPC-910RFT2,https://app.lcm-client.com/belimo/matching/40602-09100/ef351458b324e0850a46407492a79fec,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-09100
387,388,Resistors,TT Electronics,40615-01002,PCF1206-R-10KB,PCF1206R-10KBT1,https://app.lcm-client.com/belimo/matching/40615-01002/ef351458b324e0850a46407492b6a626,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-01002
388,389,Resistors,TT Electronics,40615-01022,PCF1206-R-10K2B,PCF1206R-10K2BT1,https://app.lcm-client.com/belimo/matching/40615-01022/ef351458b324e0850a46407492b6e25d,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-01022
389,390,Resistors,TT Electronics,40615-01213,PCF1206-R-121KB,PCF1206R-121KBT1,https://app.lcm-client.com/belimo/matching/40615-01213/ef351458b324e0850a46407492b72657,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-01213
390,391,Resistors,TT Electronics,40615-01822,PCF1206-R-18K2B,PCF1206R-18K2BT1,https://app.lcm-client.com/belimo/matching/40615-01822/ef351458b324e0850a46407492b751d0,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-01822
391,392,Resistors,TT Electronics,40617-01002,WRM0204C10KFI,WRM0204C-10KFI,https://app.lcm-client.com/belimo/matching/40617-01002/ef351458b324e0850a46407492b965cd,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01002
392,393,Resistors,TT Electronics,40617-01003,WRM0204C100KFI,WRM0204C-100KFI,https://app.lcm-client.com/belimo/matching/40617-01003/ef351458b324e0850a46407492b9d08e,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01003
393,394,Resistors,TT Electronics,40617-01108,WRM0204C1R1FI,WRM0204C-1R1FI,https://app.lcm-client.com/belimo/matching/40617-01108/ef351458b324e0850a46407492bb284b,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01108
394,395,Resistors,TT Electronics,40617-01201,WRM0204C1K2FI,WRM0204C-1K2FI,https://app.lcm-client.com/belimo/matching/40617-01201/ef351458b324e0850a46407492bb9190,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01201
395,396,Resistors,TT Electronics,40617-01202,WRM0204C12KFI,WRM0204C-12KFI,https://app.lcm-client.com/belimo/matching/40617-01202/ef351458b324e0850a46407492bbe280,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01202
396,397,Resistors,TT Electronics,40617-02002,WRM0204C20KFI,WRM0204C-20KFI,https://app.lcm-client.com/belimo/matching/40617-02002/ef351458b324e0850a46407492beb216,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02002
397,398,Resistors,TT Electronics,40617-02201,WRM0204C2K2FI,WRM0204C-2K2FI,https://app.lcm-client.com/belimo/matching/40617-02201/ef351458b324e0850a46407492bf96d3,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02201
398,399,Resistors,TT Electronics,40617-02202,WRM0204C22KFI,WRM0204C-22KFI,https://app.lcm-client.com/belimo/matching/40617-02202/ef351458b324e0850a46407492c0070f,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02202
399,400,Resistors,TT Electronics,40617-02402,WRM0204C24KFI,WRM0204C-24KFI,https://app.lcm-client.com/belimo/matching/40617-02402/ef351458b324e0850a46407492c077bb,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02402
400,401,Resistors,TT Electronics,41746-02007,LR2512-R20F,LR2512-R20FT1,https://app.lcm-client.com/belimo/matching/41746-02007/ef351458b324e0850a46407492cb1266,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41746-02007
401,402,Resistors,TT Electronics,41801-00057,LRMAP2512-R005F,LRMAP2512-R005FT4,https://app.lcm-client.com/belimo/matching/41801-00057/ef351458b324e0850a46407492cc617c,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/41801-00057
402,403,Resistors,TT Electronics,41808-01008,CHP1/8501R00J,CHP1/8501R00JLF,https://app.lcm-client.com/belimo/matching/41808-01008/ef351458b324e0850a46407492cc74b7,ok,STD,Yes,y,Obsolete,https://app.lcm-client.com/belimo/part/41808-01008
403,404,Resistors,Panasonic,41911-03001,ERJ2RKF3001,ERJ2RKF3001X,https://app.lcm-client.com/belimo/matching/41911-03001/01c0aaf7f54e36ff3a021a81ca303251,ok,Automotive,Exption,n,,
404,405,Resistors,Panasonic,41911-03301,ERJ2RKF3301,ERJ2RKF3301X,https://app.lcm-client.com/belimo/matching/41911-03301/01c0aaf7f54e36ff3a021a81ca30648f,ok,Automotive,Exption,n,,
405,406,Resistors,Panasonic,41911-05600,ERJ2RKF5600,ERJ2RKF5600X,https://app.lcm-client.com/belimo/matching/41911-05600/215374c1de05d3324b68f967dc5023c8,ok,Automotive,Exption,n,,
406,407,Resistors,Panasonic,41911-07502,ERJ2RKF7502,ERJ2RKF7502X,https://app.lcm-client.com/belimo/matching/41911-07502/215374c1de05d3324b68f967dc50b5a8,ok,Automotive,Exption,n,,
407,408,Resistors,Panasonic,41911-08203,ERJ2RKF8203,ERJ2RKF8203X,https://app.lcm-client.com/belimo/matching/41911-08203/215374c1de05d3324b68f967dc50e5fb,ok,Automotive,Exption,n,,
408,409,Resistors,Panasonic,41911-01103,ERJ2RKF1103,ERJ2RKF1103X,https://app.lcm-client.com/belimo/matching/41911-01103/46de94ed90f9f5ccd2b17e508cfa275c,ok,Automotive,Exption,n,,
409,410,Resistors,Panasonic,41911-01200,ERJ2RKF1200,ERJ2RKF1200X,https://app.lcm-client.com/belimo/matching/41911-01200/46de94ed90f9f5ccd2b17e508cfa4588,ok,Automotive,Exption,n,,
410,411,Resistors,Panasonic,41911-01302,ERJ2RKF1302,ERJ2RKF1302X,https://app.lcm-client.com/belimo/matching/41911-01302/46de94ed90f9f5ccd2b17e508cfa5fef,ok,Automotive,Exption,n,,
411,412,Resistors,Panasonic,41911-01303,ERJ2RKF1303,ERJ2RKF1303X,https://app.lcm-client.com/belimo/matching/41911-01303/46de94ed90f9f5ccd2b17e508cfa88df,ok,Automotive,Exption,n,,
412,413,Resistors,Panasonic,40613-01001,ERA6AEB102,ERA6AEB102V,https://app.lcm-client.com/belimo/matching/40613-01001/a57dd45b8b8bfbbc6b72118464d72071,ok,Automotive,Exption,n,,
413,414,Resistors,Panasonic,40613-01002,ERA6AEB103,ERA6AEB103V,https://app.lcm-client.com/belimo/matching/40613-01002/a57dd45b8b8bfbbc6b72118464d74c0c,ok,Automotive,Exption,n,,
414,415,Resistors,Panasonic,40613-01152,ERA6AEB1153,ERA6AEB1153V,https://app.lcm-client.com/belimo/matching/40613-01152/a57dd45b8b8bfbbc6b72118464d773c4,ok,Automotive,Exption,n,,
415,416,Resistors,Panasonic,40613-01271,ERA6AEB1271,ERA6AEB1271V,https://app.lcm-client.com/belimo/matching/40613-01271/a57dd45b8b8bfbbc6b72118464d7a262,ok,Automotive,Exption,n,,
416,417,Resistors,Panasonic,40613-01502,ERA6AEB1502,ERA6AEB1502V,https://app.lcm-client.com/belimo/matching/40613-01502/a57dd45b8b8bfbbc6b72118464d7ef05,ok,Automotive,Exption,n,,
417,418,Resistors,Panasonic,40613-01503,ERA6AEB1503,ERA6AEB1503V,https://app.lcm-client.com/belimo/matching/40613-01503/a57dd45b8b8bfbbc6b72118464d802b3,ok,Automotive,Exption,n,,
418,419,Resistors,Panasonic,40613-01602,ERA6AEB163,ERA6AEB163V,https://app.lcm-client.com/belimo/matching/40613-01602/a57dd45b8b8bfbbc6b72118464d8202c,ok,Automotive,Exption,n,,
419,420,Resistors,Panasonic,40613-02001,ERA6AEB2001,ERA6AEB2001V,https://app.lcm-client.com/belimo/matching/40613-02001/a57dd45b8b8bfbbc6b72118464d85572,ok,Automotive,Exption,n,,
420,421,Resistors,Panasonic,40613-02002,ERA6AEB2002,ERA6AEB2002V,https://app.lcm-client.com/belimo/matching/40613-02002/a57dd45b8b8bfbbc6b72118464d8777d,ok,Automotive,Exption,n,,
421,422,Resistors,Panasonic,40613-02432,ERA6AEB2431,ERA6AEB2431V,https://app.lcm-client.com/belimo/matching/40613-02432/a57dd45b8b8bfbbc6b72118464d8af94,ok,Automotive,Exption,n,,
422,423,Resistors,Panasonic,40613-03321,ERA6AEB3321,ERA6AEB3321V,https://app.lcm-client.com/belimo/matching/40613-03321/a57dd45b8b8bfbbc6b72118464d8e08b,ok,Automotive,Exption,n,,
423,424,Resistors,Panasonic,40613-03601,ERA6AEB362,ERA6AEB362V,https://app.lcm-client.com/belimo/matching/40613-03601/a57dd45b8b8bfbbc6b72118464d8fefd,ok,Automotive,Exption,n,,
424,425,Resistors,Panasonic,40613-04022,ERA6AEB4022,ERA6AEB4022V,https://app.lcm-client.com/belimo/matching/40613-04022/a57dd45b8b8bfbbc6b72118464da2fbb,ok,Automotive,Exption,n,,
425,426,Resistors,Panasonic,40613-06802,ERA6AEB683,ERA6AEB683V,https://app.lcm-client.com/belimo/matching/40613-06802/a57dd45b8b8bfbbc6b72118464da4c84,ok,Automotive,Exption,n,,
426,427,Resistors,Panasonic,40613-07871,ERA6AEB7871,ERA6AEB7871V,https://app.lcm-client.com/belimo/matching/40613-07871/a57dd45b8b8bfbbc6b72118464da5af6,ok,Automotive,Exption,n,,
427,428,Resistors,Panasonic,40613-09762,ERA6AEB9762,ERA6AEB9762V,https://app.lcm-client.com/belimo/matching/40613-09762/a57dd45b8b8bfbbc6b72118464da891e,ok,Automotive,Exption,n,,
428,429,Resistors,Panasonic,41911-01003,ERJ2RKF1003,ERJ2RKF1003X,https://app.lcm-client.com/belimo/matching/41911-01003/a57dd45b8b8bfbbc6b72118464f07eb4,ok,Automotive,Exption,n,,
429,430,Resistors,Panasonic,41911-01102,ERJ2RKF1102,ERJ2RKF1102X,https://app.lcm-client.com/belimo/matching/41911-01102/a57dd45b8b8bfbbc6b72118464f0d155,ok,Automotive,Exption,n,,
430,431,Resistors,Panasonic,41911-01202,ERJ2RKF1202,ERJ2RKF1202X,https://app.lcm-client.com/belimo/matching/41911-01202/a57dd45b8b8bfbbc6b72118464f1003f,ok,Automotive,Exption,n,,
431,432,Resistors,Panasonic,41911-01203,ERJ2RKF1203,ERJ2RKF1203X,https://app.lcm-client.com/belimo/matching/41911-01203/a57dd45b8b8bfbbc6b72118464f11b46,ok,Automotive,Exption,n,,
432,433,Resistors,Panasonic,41911-01402,ERJ2RKF1402,ERJ2RKF1402X,https://app.lcm-client.com/belimo/matching/41911-01402/a57dd45b8b8bfbbc6b72118464f1429e,ok,Automotive,Exption,n,,
433,434,Resistors,Panasonic,41911-01502,ERJ2RKF1502,ERJ2RKF1502X,https://app.lcm-client.com/belimo/matching/41911-01502/a57dd45b8b8bfbbc6b72118464f179f5,ok,Automotive,Exption,n,,
434,435,Resistors,Panasonic,41911-01503,ERJ2RKF1503,ERJ2RKF1503X,https://app.lcm-client.com/belimo/matching/41911-01503/a57dd45b8b8bfbbc6b72118464f1b159,ok,Automotive,Exption,n,,
435,436,Resistors,Panasonic,41911-01802,ERJ2RKF1802,ERJ2RKF1802X,https://app.lcm-client.com/belimo/matching/41911-01802/a57dd45b8b8bfbbc6b72118464f1e1f1,ok,Automotive,Exption,n,,
436,437,Resistors,Panasonic,41911-01803,ERJ2RKF1803,ERJ2RKF1803X,https://app.lcm-client.com/belimo/matching/41911-01803/a57dd45b8b8bfbbc6b72118464f210cd,ok,Automotive,Exption,n,,
437,438,Resistors,Panasonic,41911-02003,ERJ2RKF2003,ERJ2RKF2003X,https://app.lcm-client.com/belimo/matching/41911-02003/a57dd45b8b8bfbbc6b72118464f2425a,ok,Automotive,Exption,n,,
438,439,Resistors,Panasonic,41911-02200,ERJ2RKF2200,ERJ2RKF2200X,https://app.lcm-client.com/belimo/matching/41911-02200/a57dd45b8b8bfbbc6b72118464f2631d,ok,Automotive,Exption,n,,
439,440,Resistors,Panasonic,41911-02201,ERJ2RKF2201,ERJ2RKF2201X,https://app.lcm-client.com/belimo/matching/41911-02201/a57dd45b8b8bfbbc6b72118464f28fbc,ok,Automotive,Exption,n,,
440,441,Resistors,Panasonic,41911-02202,ERJ2RKF2202,ERJ2RKF2202X,https://app.lcm-client.com/belimo/matching/41911-02202/a57dd45b8b8bfbbc6b72118464f2ad6b,ok,Automotive,Exption,n,,
441,442,Resistors,Panasonic,41911-02203,ERJ2RKF2203,ERJ2RKF2203X,https://app.lcm-client.com/belimo/matching/41911-02203/a57dd45b8b8bfbbc6b72118464f2d9da,ok,Automotive,Exption,n,,
442,443,Resistors,Panasonic,47690-00001,ERJ-6ENF1003V,ERJ6ENF1003V,https://app.lcm-client.com/belimo/matching/47690-00001/a57dd45b8b8bfbbc6b72118464fe67b5,ok,Automotive,Exption,n,,
443,444,Resistors,Panasonic,47692-00001,ERJ-6ENF1783V,ERJ6ENF1783V,https://app.lcm-client.com/belimo/matching/47692-00001/a57dd45b8b8bfbbc6b72118464fe776d,ok,Automotive,Exption,n,,
444,445,Resistors,Panasonic,47694-00001,ERJ-6ENF4753V,ERJ6ENF4753V,https://app.lcm-client.com/belimo/matching/47694-00001/a57dd45b8b8bfbbc6b72118464fe8343,ok,Automotive,Exption,n,,
445,446,Resistors,Panasonic,47695-00001,ERJ-6ENF6493V,ERJ6ENF6493V,https://app.lcm-client.com/belimo/matching/47695-00001/a57dd45b8b8bfbbc6b72118464fe92ca,ok,Automotive,Exption,n,,
446,447,Resistors,Panasonic,47700-00001,ERJ-6ENF1000V,ERJ6ENF1000V,https://app.lcm-client.com/belimo/matching/47700-00001/a57dd45b8b8bfbbc6b72118464fee6c1,ok,Automotive,Exption,n,,
447,448,Resistors,Panasonic,47703-00001,ERJ-6ENF9090V,ERJ6ENF9090V,https://app.lcm-client.com/belimo/matching/47703-00001/a57dd45b8b8bfbbc6b72118464ff302b,ok,Automotive,Exption,n,,
448,449,Resistors,Panasonic,47704-00001,ERJ-8ENF1001V,ERJ8ENF1001V,https://app.lcm-client.com/belimo/matching/47704-00001/a57dd45b8b8bfbbc6b72118464ff3d4c,ok,Automotive,Exption,y,NRND,
449,450,Resistors,Panasonic,47716-00001,ERJ-8ENF62R0V,ERJ8ENF62R0V,https://app.lcm-client.com/belimo/matching/47716-00001/a57dd45b8b8bfbbc6b72118464ffbddb,ok,Automotive,Exption,y,NRND,
450,451,Resistors,Panasonic,47720-00001,ERJ-8ENF4990V,ERJ8ENF4990V,https://app.lcm-client.com/belimo/matching/47720-00001/a57dd45b8b8bfbbc6b72118464ffd9f2,ok,Automotive,Exption,y,NRND,
451,452,Resistors,Panasonic,41911-02400,ERJ2RKF2400,ERJ2RKF2400x,https://app.lcm-client.com/belimo/matching/41911-02400/c8cb570d5127ae96aaae8eee6653b5ee,ok,Automotive,Exption,n,,
452,453,Resistors,Panasonic,41911-02402,ERJ2RKF2402,ERJ2RKF2402X,https://app.lcm-client.com/belimo/matching/41911-02402/c8cb570d5127ae96aaae8eee6653e56f,ok,Automotive,Exption,n,,
453,454,Resistors,Panasonic,41911-02701,ERJ2RKF2701,ERJ2RKF2701X,https://app.lcm-client.com/belimo/matching/41911-02701/c8cb570d5127ae96aaae8eee66541a81,ok,Automotive,Exption,n,,
454,455,Resistors,Panasonic,41911-02702,ERJ2RKF2702,ERJ2RKF2702X,https://app.lcm-client.com/belimo/matching/41911-02702/c8cb570d5127ae96aaae8eee66543ebe,ok,Automotive,Exption,n,,
455,456,Resistors,Panasonic,41911-03002,ERJ2RKF3002,ERJ2RKF3002X,https://app.lcm-client.com/belimo/matching/41911-03002/c8cb570d5127ae96aaae8eee6654c2de,ok,Automotive,Exption,n,,
456,457,Resistors,Panasonic,41911-03003,ERJ2RKF3003,ERJ2RKF3003X,https://app.lcm-client.com/belimo/matching/41911-03003/c8cb570d5127ae96aaae8eee6655059a,ok,Automotive,Exption,n,,
457,458,Resistors,Panasonic,41911-03300,ERJ2RKF3300,ERJ2RKF3300X,https://app.lcm-client.com/belimo/matching/41911-03300/c8cb570d5127ae96aaae8eee66553a8c,ok,Automotive,Exption,n,,
458,459,Resistors,Panasonic,41911-03302,ERJ2RKF3302,ERJ2RKF3302X,https://app.lcm-client.com/belimo/matching/41911-03302/c8cb570d5127ae96aaae8eee66555ae8,ok,Automotive,Exption,n,,
459,460,Resistors,Panasonic,41911-03303,ERJ2RKF3303,ERJ2RKF3303X,https://app.lcm-client.com/belimo/matching/41911-03303/c8cb570d5127ae96aaae8eee665598e9,ok,Automotive,Exption,n,,
460,461,Resistors,Panasonic,41911-03900,ERJ2RKF3900,ERJ2RKF3900X,https://app.lcm-client.com/belimo/matching/41911-03900/c8cb570d5127ae96aaae8eee6655be39,ok,Automotive,Exption,n,,
461,462,Resistors,Panasonic,41911-04302,ERJ2RKF4302,ERJ2RKF4302X,https://app.lcm-client.com/belimo/matching/41911-04302/c8cb570d5127ae96aaae8eee66560497,ok,Automotive,Exption,n,,
462,463,Resistors,Panasonic,41911-04701,ERJ2RKF4703,ERJ2RKF4703X,https://app.lcm-client.com/belimo/matching/41911-04701/c8cb570d5127ae96aaae8eee66567b38,ok,Automotive,Exption,n,,
463,464,Resistors,Panasonic,41911-08872,ERJ2RKF8872,ERJ2RKF8872X,https://app.lcm-client.com/belimo/matching/41911-08872/c8cb570d5127ae96aaae8eee6658f0ba,ok,Automotive,Exption,n,,
464,465,Resistors,Panasonic,42175-03602,ERJ2RKF3602,ERJ2RKF3602X,https://app.lcm-client.com/belimo/matching/42175-03602/c8cb570d5127ae96aaae8eee6659b0b1,ok,Automotive,Exption,n,,
465,466,Resistors,Panasonic,42175-08201,ERJ2RKF8201,ERJ2RKF8201X,https://app.lcm-client.com/belimo/matching/42175-08201/c8cb570d5127ae96aaae8eee6659c7f1,ok,Automotive,Exption,n,,
466,467,Resistors,Panasonic,40412-02701,ERJ-U03D2701V,ERJU03D2701V,https://app.lcm-client.com/belimo/matching/40412-02701/ef351458b324e0850a464074929e2bee,ok,Automotive,Exption,n,,
467,468,Resistors,Panasonic,40412-02701,ERJ-U3RD2701V,ERJU3RD2701V,https://app.lcm-client.com/belimo/matching/40412-02701/ef351458b324e0850a464074929e3613,ok,Automotive,Exption,n,,
468,469,Resistors,Panasonic,41861-01003,ERA2AEB104,ERA2AEB104X,https://app.lcm-client.com/belimo/matching/41861-01003/ef351458b324e0850a46407492ccb156,ok,Automotive,Exption,n,,
469,470,Resistors,Panasonic,41861-02001,ERA2AEB202,ERA2AEB202X,https://app.lcm-client.com/belimo/matching/41861-02001/ef351458b324e0850a46407492ccefa4,ok,Automotive,Exption,n,,
470,471,Resistors,Panasonic,41861-02702,ERA2AEB273,ERA2AEB273X,https://app.lcm-client.com/belimo/matching/41861-02702/ef351458b324e0850a46407492cd4c96,ok,Automotive,Exption,n,,
471,472,Resistors,Panasonic,41861-04702,ERJ2RKF4702,ERJ2RKF4702X,https://app.lcm-client.com/belimo/matching/41861-04702/ef351458b324e0850a46407492cd780d,ok,Automotive,Exption,n,,
472,473,Resistors,Panasonic,41861-06802,ERA2AEB683,ERA2AEB683X,https://app.lcm-client.com/belimo/matching/41861-06802/ef351458b324e0850a46407492cd95c0,ok,Automotive,Exption,n,,
473,474,Resistors,Panasonic,41911-01001,ERJ2RKF1001,ERJ2RKF1001X,https://app.lcm-client.com/belimo/matching/41911-01001/ef351458b324e0850a46407492ced498,ok,Automotive,Exption,n,,
474,475,Resistors,Panasonic,41911-05102,ERJ2RKF5102,ERJ2RKF5102X,https://app.lcm-client.com/belimo/matching/41911-05102/ef351458b324e0850a46407492d19988,ok,Automotive,Exption,n,,
475,476,Resistors,Panasonic,41911-05103,ERJ2RKF5103,ERJ2RKF5103X,https://app.lcm-client.com/belimo/matching/41911-05103/ef351458b324e0850a46407492d1cc89,ok,Automotive,Exption,n,,
476,477,Resistors,Panasonic,41911-05603,ERJ2RKF5603,ERJ2RKF5603X,https://app.lcm-client.com/belimo/matching/41911-05603/ef351458b324e0850a46407492d223fb,ok,Automotive,Exption,n,,
477,478,Resistors,Panasonic,41911-06201,ERJ2RKF6201,ERJ2RKF6201X,https://app.lcm-client.com/belimo/matching/41911-06201/ef351458b324e0850a46407492d2c3d1,ok,Automotive,Exption,n,,
478,479,Resistors,Panasonic,41911-06202,ERJ2RKF6202,ERJ2RKF6202X,https://app.lcm-client.com/belimo/matching/41911-06202/ef351458b324e0850a46407492d2fe25,ok,Automotive,Exption,n,,
479,480,Resistors,Panasonic,41911-06802,ERJ2RKF6802,ERJ2RKF6802X,https://app.lcm-client.com/belimo/matching/41911-06802/ef351458b324e0850a46407492d330e8,ok,Automotive,Exption,n,,
480,481,Resistors,Panasonic,41911-06803,ERJ2RKF6803,ERJ2RKF6803X,https://app.lcm-client.com/belimo/matching/41911-06803/ef351458b324e0850a46407492d3643a,ok,Automotive,Exption,n,,
481,482,Resistors,Panasonic,41911-06809,ERJ2RKF68R0,ERJ2RKF68R0X,https://app.lcm-client.com/belimo/matching/41911-06809/ef351458b324e0850a46407492d3ab42,ok,Automotive,Exption,n,,
482,483,Resistors,Panasonic,47673-00001,ERJ-6ENF1151V,ERJ6ENF1151V,https://app.lcm-client.com/belimo/matching/47673-00001/ef351458b324e0850a46407492de2ab2,ok,Automotive,Exption,n,,
483,484,Resistors,Panasonic,47678-00001,ERJ-6ENF4301V,ERJ6ENF4301V,https://app.lcm-client.com/belimo/matching/47678-00001/ef351458b324e0850a46407492de700b,ok,Automotive,Exption,n,,
484,485,Resistors,Panasonic,47682-00001,ERJ-6ENF1912V,ERJ6ENF1912V,https://app.lcm-client.com/belimo/matching/47682-00001/ef351458b324e0850a46407492decfd2,ok,Automotive,Exption,n,,
485,486,Resistors,TDK,40138,B57620C5102J,B57620C5102J062,https://app.lcm-client.com/belimo/matching/40138/ef351458b324e0850a464074929dd12c,ok,STD,Yes,y,Requires Update,https://app.lcm-client.com/belimo/part/40138

@ -0,0 +1,487 @@
,Pos,Category,Manufacturer,CPN,MPN,MPN_Matched,Link,Status,State,ROHS,report_belimo,Comment,CPN_Link
0,1,Resistors,Vishay,41749-01509,CMB02070X1509,CMB02070X1509JB200 ,https://app.lcm-client.com/belimo/matching/41749-01509/46de94ed90f9f5ccd2b17e508cf7765a,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/41749-01509
1,2,Resistors,Vishay,40613-01001,MCU08050D1001B,MCU08050D1001BP500,https://app.lcm-client.com/belimo/matching/40613-01001/a57dd45b8b8bfbbc6b72118464d732a4,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01001
2,3,Resistors,Vishay,40613-01002,MCU08050D1002B,MCU08050D1002BP500,https://app.lcm-client.com/belimo/matching/40613-01002/a57dd45b8b8bfbbc6b72118464d75801,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01002
3,4,Resistors,Vishay,40613-01152,MCU08050D1152B,MCU08050D1152BP500,https://app.lcm-client.com/belimo/matching/40613-01152/a57dd45b8b8bfbbc6b72118464d7859d,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01152
4,5,Resistors,Vishay,40613-01271,MCU08050D1271B,MCU08050D1271BP500,https://app.lcm-client.com/belimo/matching/40613-01271/a57dd45b8b8bfbbc6b72118464d7c5d9,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01271
5,6,Resistors,Vishay,40613-01300,MCU08050D1300B,MCU08050D1300BP500,https://app.lcm-client.com/belimo/matching/40613-01300/a57dd45b8b8bfbbc6b72118464d7dde1,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01300
6,7,Resistors,Vishay,40613-01502,MCU08050D1502B,MCU08050D1502BP500,https://app.lcm-client.com/belimo/matching/40613-01502/a57dd45b8b8bfbbc6b72118464d7f9ab,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01502
7,8,Resistors,Vishay,40613-01503,MCU08050D1503B,MCU08050D1503BP500,https://app.lcm-client.com/belimo/matching/40613-01503/a57dd45b8b8bfbbc6b72118464d80785,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01503
8,9,Resistors,Vishay,40613-01602,MCU08050D1602B,MCU08050D1602BP500,https://app.lcm-client.com/belimo/matching/40613-01602/a57dd45b8b8bfbbc6b72118464d82cc5,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01602
9,10,Resistors,Vishay,40613-02001,MCU08050D2001B,MCU08050D2001BP500,https://app.lcm-client.com/belimo/matching/40613-02001/a57dd45b8b8bfbbc6b72118464d863d6,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-02001
10,11,Resistors,Vishay,40617-01208,SMM02040C1208F,SMM02040C1208FB300,https://app.lcm-client.com/belimo/matching/40617-01208/a57dd45b8b8bfbbc6b72118464e27bef,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01208
11,12,Resistors,Vishay,40617-01208,MMA02040C1211F,MMA02040C1211FB300,https://app.lcm-client.com/belimo/matching/40617-01211/a57dd45b8b8bfbbc6b72118464e2d494,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01208
12,13,Resistors,Vishay, 40617-01211,SMM02040C1211F,SMM02040C1211FB300,https://app.lcm-client.com/belimo/matching/40617-01211/a57dd45b8b8bfbbc6b72118464e2d5e6,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/ 40617-01211
13,14,Resistors,Vishay,40617-01211,MMA02040C1308F,MMA02040C1308FB300,https://app.lcm-client.com/belimo/matching/40617-01308/a57dd45b8b8bfbbc6b72118464e330ad,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01211
14,15,Resistors,Vishay,40617-01308,SMM02040C1308F,SMM02040C1308FB300,https://app.lcm-client.com/belimo/matching/40617-01308/a57dd45b8b8bfbbc6b72118464e3356a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01308
15,16,Resistors,Vishay,40617-01308,MMA02040C1508F,MMA02040C1508FB300,https://app.lcm-client.com/belimo/matching/40617-01508/a57dd45b8b8bfbbc6b72118464e39977,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01308
16,17,Resistors,Vishay,40617-01508,SMM02040C1508F,SMM02040C1508FB300,https://app.lcm-client.com/belimo/matching/40617-01508/a57dd45b8b8bfbbc6b72118464e3a808,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01508
17,18,Resistors,Vishay,40617-01508,MMA02040C1509F,MMA02040C1509FB300,https://app.lcm-client.com/belimo/matching/40617-01509/a57dd45b8b8bfbbc6b72118464e40ddc,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01508
18,19,Resistors,Vishay,40617-01509,SMM02040C1509F,SMM02040C1509FB300,https://app.lcm-client.com/belimo/matching/40617-01509/a57dd45b8b8bfbbc6b72118464e41200,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01509
19,20,Resistors,Vishay,40617-01509,MMA02040C1800F,MMA02040C1800FB300,https://app.lcm-client.com/belimo/matching/40617-01800/a57dd45b8b8bfbbc6b72118464e48179,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01509
20,21,Resistors,Vishay,40617-03901,SMM02040C3901F,SMM02040C3901FB300,https://app.lcm-client.com/belimo/matching/40617-03901/a57dd45b8b8bfbbc6b72118464e91b53,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03901
21,22,Resistors,Vishay,40617-04301,MMA02040C4301F,MMA02040C4301FB300,https://app.lcm-client.com/belimo/matching/40617-04301/a57dd45b8b8bfbbc6b72118464e98b90,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04301
22,23,Resistors,Vishay,40617-04301,SMM02040C4301F,SMM02040C4301FB300,https://app.lcm-client.com/belimo/matching/40617-04301/a57dd45b8b8bfbbc6b72118464e9917e,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04301
23,24,Resistors,Vishay,40617-04700,MMA02040C4700F,MMA02040C4700FB300,https://app.lcm-client.com/belimo/matching/40617-04700/a57dd45b8b8bfbbc6b72118464ea276d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04700
24,25,Resistors,Vishay,40617-04700,SMM02040C4700F,SMM02040C4700FB300,https://app.lcm-client.com/belimo/matching/40617-04700/a57dd45b8b8bfbbc6b72118464ea2ceb,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04700
25,26,Resistors,Vishay,47180,MBB02070C1052F,MBB02070C1052FRP00,https://app.lcm-client.com/belimo/matching/47180/a57dd45b8b8bfbbc6b72118464f9e611,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47180
26,27,Resistors,Vishay,47181,MBB02070C7322F,MBB02070C7322FRP00,https://app.lcm-client.com/belimo/matching/47181/a57dd45b8b8bfbbc6b72118464fa0d74,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47181
27,28,Resistors,Vishay,47182,MBB02070C8062F,MBB02070C8062FR100 ,https://app.lcm-client.com/belimo/matching/47182/a57dd45b8b8bfbbc6b72118464fa284b,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47182
28,29,Resistors,Vishay,47183,MBB02070C2873F,MBB02070C2873FRP00,https://app.lcm-client.com/belimo/matching/47183/a57dd45b8b8bfbbc6b72118464fa487f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47183
29,30,Resistors,Vishay,47184,MBB02070C4304F,MBB02070C4304FRP00,https://app.lcm-client.com/belimo/matching/47184/a57dd45b8b8bfbbc6b72118464fa7121,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47184
30,31,Resistors,Vishay,47340,MBB02070C4531F,MBB02070C4531FRP00,https://app.lcm-client.com/belimo/matching/47340/a57dd45b8b8bfbbc6b72118464fbae15,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47340
31,32,Resistors,Vishay,47341,MBB02070C5601F,MBB02070C5601FRP00,https://app.lcm-client.com/belimo/matching/47341/a57dd45b8b8bfbbc6b72118464fbbb63,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47341
32,33,Resistors,Vishay,47342,MBB02070C4423F,MBB02070C4423FRP00,https://app.lcm-client.com/belimo/matching/47342/a57dd45b8b8bfbbc6b72118464fbd854,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47342
33,34,Resistors,Vishay,47343,MBB02070C2671F,MBB02070C2671FRP00,https://app.lcm-client.com/belimo/matching/47343/a57dd45b8b8bfbbc6b72118464fbf0df,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47343
34,35,Resistors,Vishay,47344,MBB02070C6202F,MBB02070C6202FRP00,https://app.lcm-client.com/belimo/matching/47344/a57dd45b8b8bfbbc6b72118464fc0ace,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47344
35,36,Resistors,Vishay,47355-01104,MBB02070C1104F,MBB02070C1104FRP00,https://app.lcm-client.com/belimo/matching/47355-01104/a57dd45b8b8bfbbc6b72118464fc27b6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01104
36,37,Resistors,Vishay,47355-01104,MRS25000C1104F,MRS25000C1104FRP00,https://app.lcm-client.com/belimo/matching/47355-01104/a57dd45b8b8bfbbc6b72118464fc3277,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01104
37,38,Resistors,Vishay,47355-01153,MBB02070C1153F,MBB02070C1153FRP00,https://app.lcm-client.com/belimo/matching/47355-01153/a57dd45b8b8bfbbc6b72118464fc55bf,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01153
38,39,Resistors,Vishay,47355-01153,MRS25000C1153F,MRS25000C1153FRP00 ,https://app.lcm-client.com/belimo/matching/47355-01153/a57dd45b8b8bfbbc6b72118464fc6578,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01153
39,40,Resistors,Vishay,47355-01208,MBB02070C1208F,MBB02070C1208FRP00,https://app.lcm-client.com/belimo/matching/47355-01208/a57dd45b8b8bfbbc6b72118464fc73ef,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01208
40,41,Resistors,Vishay,40617-04992,SMM02040C4992F,SMM02040C4992FB300,https://app.lcm-client.com/belimo/matching/40617-04992/c8cb570d5127ae96aaae8eee6648e367,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04992
41,42,Resistors,Vishay,40617-05109,MMA02040C5109F,MMA02040C5109FB300,https://app.lcm-client.com/belimo/matching/40617-05109/c8cb570d5127ae96aaae8eee66495230,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-05109
42,43,Resistors,Vishay,40617-05109,SMM02040C5109F,SMM02040C5109FB300,https://app.lcm-client.com/belimo/matching/40617-05109/c8cb570d5127ae96aaae8eee66496136,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-05109
43,44,Resistors,Vishay,40617-05601,MMA02040C5601F,MMA02040C5601FB300,https://app.lcm-client.com/belimo/matching/40617-05601/c8cb570d5127ae96aaae8eee6649c485,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-05601
44,45,Resistors,Vishay,40617-05601,SMM02040C5601F,SMM02040C5601FB300,https://app.lcm-client.com/belimo/matching/40617-05601/c8cb570d5127ae96aaae8eee6649c730,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-05601
45,46,Resistors,Vishay,40617-06208,MMA02040C6208F,MMA02040C6208FB300,https://app.lcm-client.com/belimo/matching/40617-06208/c8cb570d5127ae96aaae8eee664a2dc7,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06208
46,47,Resistors,Vishay,40617-06208,SMM02040C6208F,SMM02040C6208FB300,https://app.lcm-client.com/belimo/matching/40617-06208/c8cb570d5127ae96aaae8eee664a3d62,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06208
47,48,Resistors,Vishay,40617-06800,MMA02040C6800F,MMA02040C6800FB300,https://app.lcm-client.com/belimo/matching/40617-06800/c8cb570d5127ae96aaae8eee664aadfe,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06800
48,49,Resistors,Vishay,40617-06800,SMM02040C6800F,SMM02040C6800FB300,https://app.lcm-client.com/belimo/matching/40617-06800/c8cb570d5127ae96aaae8eee664ab3f4,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06800
49,50,Resistors,Vishay,40617-06801,MMA02040C6801F,MMA02040C6801FB300,https://app.lcm-client.com/belimo/matching/40617-06801/c8cb570d5127ae96aaae8eee664b9f72,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06801
50,51,Resistors,Vishay,40618-07502,CRCW251275K0JN,CRCW251275K0JNEG,https://app.lcm-client.com/belimo/matching/40618-07502/c8cb570d5127ae96aaae8eee664dbba8,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/40618-07502
51,52,Resistors,Vishay,40663-03307,MMB02070C3307J,MMB02070C3307JB200,https://app.lcm-client.com/belimo/matching/40663-03307/c8cb570d5127ae96aaae8eee664ded91,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40663-03307
52,53,Resistors,Vishay,40663-05107,MMB02070C5107J,MMB02070C5107JB200,https://app.lcm-client.com/belimo/matching/40663-05107/c8cb570d5127ae96aaae8eee664e0785,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40663-05107
53,54,Resistors,Vishay,40701-01001,PR01000101001F,PR01000101001FR500,https://app.lcm-client.com/belimo/matching/40701-01001/c8cb570d5127ae96aaae8eee664e1100,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40701-01001
54,55,Resistors,Vishay,40702,MBE04140C8200F,MBE04140C8200FR200,https://app.lcm-client.com/belimo/matching/40702/c8cb570d5127ae96aaae8eee664e2354,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40702
55,56,Resistors,Vishay,40703-04990,PR02000204990F,PR02000204990FR500,https://app.lcm-client.com/belimo/matching/40703-04990/c8cb570d5127ae96aaae8eee664e3084,nok,Automotive,Yes,y,Missing In LCM,https://app.lcm-client.com/belimo/part/40703-04990
56,57,Resistors,Vishay,40710-05600,CPF3560R00FKE,CPF3560R00FKEE6,https://app.lcm-client.com/belimo/matching/40710-05600/c8cb570d5127ae96aaae8eee664e4712,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40710-05600
57,58,Resistors,Vishay,40710-05600,CPF3560R00FLE,CPF3560R00FLE36,https://app.lcm-client.com/belimo/matching/40710-05600/c8cb570d5127ae96aaae8eee664e48da,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40710-05600
58,59,Resistors,Vishay,41917-02208,RCS12062R20JN,RCS12062R20JNEA,https://app.lcm-client.com/belimo/matching/41917-02208/c8cb570d5127ae96aaae8eee66591f88,ok,STD,Exption,n,,https://app.lcm-client.com/belimo/part/41917-02208
59,60,Resistors,Vishay,41917-02209,RCS120622R0JN,RCS120622R0JNEA,https://app.lcm-client.com/belimo/matching/41917-02209/c8cb570d5127ae96aaae8eee66593e8b,ok,STD,Exption,n,,https://app.lcm-client.com/belimo/part/41917-02209
60,61,Resistors,Vishay,47012-02371,MRS25000C2371F,MRS25000C2371FRP00,https://app.lcm-client.com/belimo/matching/47012-02371/c8cb570d5127ae96aaae8eee665ba18c,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-02371
61,62,Resistors,Vishay,47012-02400,MBB02070C2400F,MBB02070C2400FRP00,https://app.lcm-client.com/belimo/matching/47012-02400/c8cb570d5127ae96aaae8eee665bc184,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47012-02400
62,63,Resistors,Vishay,47012-02400,MRS25000C2400F,MRS25000C2400FRP00,https://app.lcm-client.com/belimo/matching/47012-02400/c8cb570d5127ae96aaae8eee665bcc30,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47012-02400
63,64,Resistors,Vishay,47072,MBB02070C3301F,MBB02070C3301FRP00,https://app.lcm-client.com/belimo/matching/47072/c8cb570d5127ae96aaae8eee665e3813,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47072
64,65,Resistors,Vishay,47080,MBB02070C1603F,MBB02070C1603FRP00,https://app.lcm-client.com/belimo/matching/47080/c8cb570d5127ae96aaae8eee665e5210,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47080
65,66,Resistors,Vishay,47100,MBB02070C4122F,MBB02070C4122FRP00,https://app.lcm-client.com/belimo/matching/47100/c8cb570d5127ae96aaae8eee665e71cc,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47100
66,67,Resistors,Vishay,47101,MBB02070C1479F,MBB02070C1479FRP00,https://app.lcm-client.com/belimo/matching/47101/c8cb570d5127ae96aaae8eee665e9aa1,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47101
67,68,Resistors,Vishay,47102,MBB02070C8871F,MBB02070C8871FRP00,https://app.lcm-client.com/belimo/matching/47102/c8cb570d5127ae96aaae8eee665eb013,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47102
68,69,Resistors,Vishay,47103,MBB02070C2491F,MBB02070C2491FRP00,https://app.lcm-client.com/belimo/matching/47103/c8cb570d5127ae96aaae8eee665ed09c,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47103
69,70,Resistors,Vishay,47122,MBB02070C1583F,MBB02070C1583FRP00,https://app.lcm-client.com/belimo/matching/47122/c8cb570d5127ae96aaae8eee665f1b46,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47122
70,71,Resistors,Vishay,47142,MBB02070C8201F,MBB02070C8201FRP00,https://app.lcm-client.com/belimo/matching/47142/c8cb570d5127ae96aaae8eee66606f98,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47142
71,72,Resistors,Vishay,47145,MBB02070C1203F,MBB02070C1203FRP00,https://app.lcm-client.com/belimo/matching/47145/c8cb570d5127ae96aaae8eee6660a704,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47145
72,73,Resistors,Vishay,47162,MBB02070C5362F,MBB02070C5362FRP00,https://app.lcm-client.com/belimo/matching/47162/c8cb570d5127ae96aaae8eee6660c3c6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47162
73,74,Resistors,Vishay,47168,MBB02070C3003F,MBB02070C3003FRP00,https://app.lcm-client.com/belimo/matching/47168/c8cb570d5127ae96aaae8eee6660fe68,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47168
74,75,Resistors,Vishay,47179,MBB02070C9760F,MBB02070C9760FRP00,https://app.lcm-client.com/belimo/matching/47179/c8cb570d5127ae96aaae8eee666120a3,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47179
75,76,Resistors,Vishay,40412-02701,CRCW06032K70DH,CRCW06032K70DHEAP,https://app.lcm-client.com/belimo/matching/40412-02701/ef351458b324e0850a464074929e4c4e,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/40412-02701
76,77,Resistors,Vishay,40412-02701,CRCW06032K70DK,CRCW06032K70DHEAP,https://app.lcm-client.com/belimo/matching/40412-02701/ef351458b324e0850a464074929e54c2,ok,Automotive,Exption,y,PPM Difference,https://app.lcm-client.com/belimo/part/40412-02701
77,78,Resistors,Vishay,40542,MBB02070C2702F,MBB02070C2702FRP00 ,https://app.lcm-client.com/belimo/matching/40542/ef351458b324e0850a464074929f8a38,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40542
78,79,Resistors,Vishay,40542,MBB0207IC2702F,MBB0207IC2702FRP00,https://app.lcm-client.com/belimo/matching/40542/ef351458b324e0850a464074929f962a,nok,Medical,Yes,y,Missing In LCM,https://app.lcm-client.com/belimo/part/40542
79,80,Resistors,Vishay,40542,MRS25000C2702F,MRS25000C2702FRP00,https://app.lcm-client.com/belimo/matching/40542/ef351458b324e0850a464074929f971d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40542
80,81,Resistors,Vishay,40602-01100,SMM02070C1100F,SMM02070C1100FBS00,https://app.lcm-client.com/belimo/matching/40602-01100/ef351458b324e0850a46407492a0fcf3,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01100
81,82,Resistors,Vishay,40602-01501,MMB02070C1501F,MMB02070C1501FB700,https://app.lcm-client.com/belimo/matching/40602-01501/ef351458b324e0850a46407492a1312e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01501
82,83,Resistors,Vishay,40602-01501,SMM02070C1501F,SMM02070C1501FBS00,https://app.lcm-client.com/belimo/matching/40602-01501/ef351458b324e0850a46407492a13317,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01501
83,84,Resistors,Vishay,40602-01503,MMB02070C1503F,MMB02070C1503FB200,https://app.lcm-client.com/belimo/matching/40602-01503/ef351458b324e0850a46407492a166ca,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01503
84,85,Resistors,Vishay,40602-01503,SMM02070C1503F,SMM02070C1503FBS00,https://app.lcm-client.com/belimo/matching/40602-01503/ef351458b324e0850a46407492a172df,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01503
85,86,Resistors,Vishay,40602-01801,MMB02070C1801F,MMB02070C1801FB700,https://app.lcm-client.com/belimo/matching/40602-01801/ef351458b324e0850a46407492a19e31,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01801
86,87,Resistors,Vishay,40602-01801,SMM02070C1801F,SMM02070C1801FBS00,https://app.lcm-client.com/belimo/matching/40602-01801/ef351458b324e0850a46407492a1adcd,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01801
87,88,Resistors,Vishay,40602-02201,MMB02070C2201F,MMB02070C2201FB700,https://app.lcm-client.com/belimo/matching/40602-02201/ef351458b324e0850a46407492a1e4d1,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02201
88,89,Resistors,Vishay,40602-02201,SMM02070C2201F,SMM02070C2201FBS00,https://app.lcm-client.com/belimo/matching/40602-02201/ef351458b324e0850a46407492a1e7f8,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02201
89,90,Resistors,Vishay,40602-02203,MMB02070C2203F,MMB02070C2203FB200,https://app.lcm-client.com/belimo/matching/40602-02203/ef351458b324e0850a46407492a21787,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02203
90,91,Resistors,Vishay,40602-04701,SMM02070C4701F,SMM02070C4701FBS00,https://app.lcm-client.com/belimo/matching/40602-04701/ef351458b324e0850a46407492a55cd6,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04701
91,92,Resistors,Vishay,40602-04702,MMB02070C4702F,MMB02070C4702FB200,https://app.lcm-client.com/belimo/matching/40602-04702/ef351458b324e0850a46407492a5987a,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04702
92,93,Resistors,Vishay,40602-04702,SMM02070C4702F,SMM02070C4702FBS00 ,https://app.lcm-client.com/belimo/matching/40602-04702/ef351458b324e0850a46407492a59e12,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04702
93,94,Resistors,Vishay,40602-04703,MMB02070C4703F,MMB02070C4703FB200 ,https://app.lcm-client.com/belimo/matching/40602-04703/ef351458b324e0850a46407492a5c84a,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04703
94,95,Resistors,Vishay,40602-04703,SMM02070C4703F,SMM02070C4703FBS00,https://app.lcm-client.com/belimo/matching/40602-04703/ef351458b324e0850a46407492a5cef1,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04703
95,96,Resistors,Vishay,40602-05100,MMB02070C5100F,MMB02070C5100FB700,https://app.lcm-client.com/belimo/matching/40602-05100/ef351458b324e0850a46407492a6213a,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05100
96,97,Resistors,Vishay,40602-05100,SMM02070C5100F,SMM02070C5100FBP00,https://app.lcm-client.com/belimo/matching/40602-05100/ef351458b324e0850a46407492a628ff,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05100
97,98,Resistors,Vishay,40602-05603,MMB02070C5603F,MMB02070C5603FB700,https://app.lcm-client.com/belimo/matching/40602-05603/ef351458b324e0850a46407492a653e8,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05603
98,99,Resistors,Vishay,40602-05603,SMM02070C5603F,SMM02070C5603FBS00,https://app.lcm-client.com/belimo/matching/40602-05603/ef351458b324e0850a46407492a65dfb,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05603
99,100,Resistors,Vishay,40602-05607,MMB02070C5607F,MMB02070C5607FB200,https://app.lcm-client.com/belimo/matching/40602-05607/ef351458b324e0850a46407492a66cc9,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05607
100,101,Resistors,Vishay,40613-02002,MCU08050D2002B,MCU08050D2002BP500,https://app.lcm-client.com/belimo/matching/40613-02002/a57dd45b8b8bfbbc6b72118464d889cb,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-02002
101,102,Resistors,Vishay,40613-02432,MCU08050D2431B,MCU08050D2431BP500,https://app.lcm-client.com/belimo/matching/40613-02432/a57dd45b8b8bfbbc6b72118464d8b980,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-02432
102,103,Resistors,Vishay,40613-03321,MCU08050D3321B,MCU08050D3321BP500,https://app.lcm-client.com/belimo/matching/40613-03321/a57dd45b8b8bfbbc6b72118464d8ef7d,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-03321
103,104,Resistors,Vishay,40613-03601,MCU08050D3601B,MCU08050D3601BP500,https://app.lcm-client.com/belimo/matching/40613-03601/a57dd45b8b8bfbbc6b72118464d918c6,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-03601
104,105,Resistors,Vishay,40613-04022,MCU08050D4022B,MCU08050D4022BP500,https://app.lcm-client.com/belimo/matching/40613-04022/a57dd45b8b8bfbbc6b72118464da3edf,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-04022
105,106,Resistors,Vishay,40613-06802,MCU08050D6802B,MCU08050D6802BP500,https://app.lcm-client.com/belimo/matching/40613-06802/a57dd45b8b8bfbbc6b72118464da579b,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-06802
106,107,Resistors,Vishay,40613-07871,MCU08050D7871B,MCU08050D7871BP500,https://app.lcm-client.com/belimo/matching/40613-07871/a57dd45b8b8bfbbc6b72118464da6f4d,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-07871
107,108,Resistors,Vishay,40613-09762,MCU08050D9762B,MCU08050D9762BP500,https://app.lcm-client.com/belimo/matching/40613-09762/a57dd45b8b8bfbbc6b72118464da97e7,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-09762
108,109,Resistors,Vishay,40617-01204,MMA02040C1205F,MMA02040C1205FB300,https://app.lcm-client.com/belimo/matching/40617-01204/a57dd45b8b8bfbbc6b72118464e1f209,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01204
109,110,Resistors,Vishay,40617-01208,MMA02040C1208F,MMA02040C1208FB300,https://app.lcm-client.com/belimo/matching/40617-01208/a57dd45b8b8bfbbc6b72118464e26c1f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01208
110,111,Resistors,Vishay,47215,MBB02070C3603F,MBB02070C3603FRP00,https://app.lcm-client.com/belimo/matching/47215/a57dd45b8b8bfbbc6b72118464fa91aa,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47215
111,112,Resistors,Vishay,47232,MBB02070C5622F,MBB02070C5622FRP00,https://app.lcm-client.com/belimo/matching/47232/a57dd45b8b8bfbbc6b72118464fabb7c,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47232
112,113,Resistors,Vishay,47245,MBB02070C1330F,MBB02070C1330FRP00,https://app.lcm-client.com/belimo/matching/47245/a57dd45b8b8bfbbc6b72118464fadaf4,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47245
113,114,Resistors,Vishay,47251,MBB02070C1371F,MBB02070C1371FRP00,https://app.lcm-client.com/belimo/matching/47251/a57dd45b8b8bfbbc6b72118464faf77a,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47251
114,115,Resistors,Vishay,47274,MBB02070C1108F,MBB02070C1108FRP00,https://app.lcm-client.com/belimo/matching/47274/a57dd45b8b8bfbbc6b72118464fb1287,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47274
115,116,Resistors,Vishay,47313,MBB02070C3303F,MBB02070C3303FRP00,https://app.lcm-client.com/belimo/matching/47313/a57dd45b8b8bfbbc6b72118464fb22db,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47313
116,117,Resistors,Vishay,47315,MBB02070C1604F,MBB02070C1604FRP00,https://app.lcm-client.com/belimo/matching/47315/a57dd45b8b8bfbbc6b72118464fb3e0d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47315
117,118,Resistors,Vishay,47316,MBB02070C4704F,MBB02070C4704FRP00,https://app.lcm-client.com/belimo/matching/47316/a57dd45b8b8bfbbc6b72118464fb5c4f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47316
118,119,Resistors,Vishay,47337,MBB02070C2002F,MBB02070C2002FRP00,https://app.lcm-client.com/belimo/matching/47337/a57dd45b8b8bfbbc6b72118464fb756d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47337
119,120,Resistors,Vishay,47339,MBB02070C6802F,MBB02070C6802FRP00,https://app.lcm-client.com/belimo/matching/47339/a57dd45b8b8bfbbc6b72118464fb8f39,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47339
120,121,Resistors,Vishay,40617-06801,SMM02040C6801F,SMM02040C6801FB000,https://app.lcm-client.com/belimo/matching/40617-06801/c8cb570d5127ae96aaae8eee664ba638,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06801
121,122,Resistors,Vishay,40617-06807,MMA02040C6807F,MMA02040C6807FB300,https://app.lcm-client.com/belimo/matching/40617-06807/c8cb570d5127ae96aaae8eee664c0b79,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06807
122,123,Resistors,Vishay,40617-06807,SMM02040B6807J,SMM02040B6807JB000,https://app.lcm-client.com/belimo/matching/40617-06807/c8cb570d5127ae96aaae8eee664c1061,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06807
123,124,Resistors,Vishay,40617-07502,MMA02040C7502F,MMA02040C7502FB200,https://app.lcm-client.com/belimo/matching/40617-07502/c8cb570d5127ae96aaae8eee664c7046,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-07502
124,125,Resistors,Vishay,40617-07502,SMM02040C7502F,SMM02040C7502FB000,https://app.lcm-client.com/belimo/matching/40617-07502/c8cb570d5127ae96aaae8eee664c780d,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-07502
125,126,Resistors,Vishay,40617-09107,MMA02040C9107F,MMA02040C9107FB300,https://app.lcm-client.com/belimo/matching/40617-09107/c8cb570d5127ae96aaae8eee664cd373,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-09107
126,127,Resistors,Vishay,40617-09107,SMM02040C9107F,SMM02040C9107FB000,https://app.lcm-client.com/belimo/matching/40617-09107/c8cb570d5127ae96aaae8eee664cd73a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-09107
127,128,Resistors,Vishay,40618-01001,CRCW25121K00JN,CRCW25121K00JNEG,https://app.lcm-client.com/belimo/matching/40618-01001/c8cb570d5127ae96aaae8eee664d0cdc,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/40618-01001
128,129,Resistors,Vishay,40618-01501,CRCW25121K50JN,CRCW25121K50JNEG,https://app.lcm-client.com/belimo/matching/40618-01501/c8cb570d5127ae96aaae8eee664d2f90,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/40618-01501
129,130,Resistors,Vishay,40618-02401,CRCW25122K40JN,CRCW25122K40JNEG,https://app.lcm-client.com/belimo/matching/40618-02401/c8cb570d5127ae96aaae8eee664d5a8d,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/40618-02401
130,131,Resistors,Vishay,47123,MBB02070C1873F,MBB02070C1873FRP00,https://app.lcm-client.com/belimo/matching/47123/c8cb570d5127ae96aaae8eee665f3f95,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47123
131,132,Resistors,Vishay,47125,MBB02070C1008F,MBB02070C1008FRP00,https://app.lcm-client.com/belimo/matching/47125/c8cb570d5127ae96aaae8eee665f5b74,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47125
132,133,Resistors,Vishay,47131,MBB02070C6193F,MBB02070C6193FRP00,https://app.lcm-client.com/belimo/matching/47131/c8cb570d5127ae96aaae8eee665f8495,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47131
133,134,Resistors,Vishay,47132,MBB02070C3323F,MBB02070C3323FRP00,https://app.lcm-client.com/belimo/matching/47132/c8cb570d5127ae96aaae8eee665fa357,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47132
134,135,Resistors,Vishay,47133,MBB02070C1433F,MBB02070C1433FRP00,https://app.lcm-client.com/belimo/matching/47133/c8cb570d5127ae96aaae8eee665fc181,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47133
135,136,Resistors,Vishay,47137,MBB02070C4700F,MBB02070C4700FRP00,https://app.lcm-client.com/belimo/matching/47137/c8cb570d5127ae96aaae8eee665fddc6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47137
136,137,Resistors,Vishay,47138,MBB02070C1653F,MBB02070C1653FRP00,https://app.lcm-client.com/belimo/matching/47138/c8cb570d5127ae96aaae8eee6660128b,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47138
137,138,Resistors,Vishay,47139,MBB02070C9104F,MBB02070C9104FRP00,https://app.lcm-client.com/belimo/matching/47139/c8cb570d5127ae96aaae8eee66602471,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47139
138,139,Resistors,Vishay,47140,MBB02070C3652F,MBB02070C3652FRP00,https://app.lcm-client.com/belimo/matching/47140/c8cb570d5127ae96aaae8eee6660397f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47140
139,140,Resistors,Vishay,47141,MBB02070C4873F,MBB02070C4873FRP00,https://app.lcm-client.com/belimo/matching/47141/c8cb570d5127ae96aaae8eee66605f85,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47141
140,141,Resistors,Vishay,40602-02203,SMM02070C2203F,SMM02070C2203FBS00,https://app.lcm-client.com/belimo/matching/40602-02203/ef351458b324e0850a46407492a2262b,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02203
141,142,Resistors,Vishay,40602-02204,MMB02070C2204F,MMB02070C2204FB200,https://app.lcm-client.com/belimo/matching/40602-02204/ef351458b324e0850a46407492a250b9,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02204
142,143,Resistors,Vishay,40602-02204,SMM02070C2204F,SMM02070C2204FBS00,https://app.lcm-client.com/belimo/matching/40602-02204/ef351458b324e0850a46407492a2542a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02204
143,144,Resistors,Vishay,40602-02401,MMB02070C2401F,MMB02070C2401FB200,https://app.lcm-client.com/belimo/matching/40602-02401/ef351458b324e0850a46407492a28bcc,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02401
144,145,Resistors,Vishay,40602-02401,SMM02070C2401F,SMM02070C2401FBS00,https://app.lcm-client.com/belimo/matching/40602-02401/ef351458b324e0850a46407492a295bf,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02401
145,146,Resistors,Vishay,40602-02402,MMB02070C2402F,MMB02070C2402FB200,https://app.lcm-client.com/belimo/matching/40602-02402/ef351458b324e0850a46407492a2d0e4,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02402
146,147,Resistors,Vishay,40602-02402,SMM02070C2402F,SMM02070C2402FBS00,https://app.lcm-client.com/belimo/matching/40602-02402/ef351458b324e0850a46407492a2d8ad,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02402
147,148,Resistors,Vishay,40602-02403,MMB02070C2403F,MMB02070C2403FB700,https://app.lcm-client.com/belimo/matching/40602-02403/ef351458b324e0850a46407492a2f357,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02403
148,149,Resistors,Vishay,40602-02403,SMM02070C2403F,SMM02070C2403FBP00,https://app.lcm-client.com/belimo/matching/40602-02403/ef351458b324e0850a46407492a2ffb8,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02403
149,150,Resistors,Vishay,40602-02491,MMB02070C2491F,MMB02070C2491FB700,https://app.lcm-client.com/belimo/matching/40602-02491/ef351458b324e0850a46407492a32ce6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02491
150,151,Resistors,Vishay,40602-06209,MMB02070C6209F,MMB02070C6209FB200,https://app.lcm-client.com/belimo/matching/40602-06209/ef351458b324e0850a46407492a6a237,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-06209
151,152,Resistors,Vishay,40602-06209,SMM02070C6209F,SMM02070C6209FBP00,https://app.lcm-client.com/belimo/matching/40602-06209/ef351458b324e0850a46407492a6a9a2,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-06209
152,153,Resistors,Vishay,40602-07502,MMB02070C7502F,MMB02070C7502FB700,https://app.lcm-client.com/belimo/matching/40602-07502/ef351458b324e0850a46407492a6e1c2,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-07502
153,154,Resistors,Vishay,40602-07502,SMM02070C7502F,SMM02070C7502FBS00,https://app.lcm-client.com/belimo/matching/40602-07502/ef351458b324e0850a46407492a6ee06,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-07502
154,155,Resistors,Vishay,40602-08063,MMB02070C8063F,MMB02070C8063FB700,https://app.lcm-client.com/belimo/matching/40602-08063/ef351458b324e0850a46407492a7303b,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08063
155,156,Resistors,Vishay,40602-08063,SMM02070C8063F,SMM02070C8063FBP00,https://app.lcm-client.com/belimo/matching/40602-08063/ef351458b324e0850a46407492a737bf,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08063
156,157,Resistors,Vishay,40602-08202,MMB02070C8202F,MMB02070C8202FB300,https://app.lcm-client.com/belimo/matching/40602-08202/ef351458b324e0850a46407492a76d3e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08202
157,158,Resistors,Vishay,40602-08202,SMM02070C8202F,SMM02070C8202FBS00,https://app.lcm-client.com/belimo/matching/40602-08202/ef351458b324e0850a46407492a770da,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08202
158,159,Resistors,Vishay,40602-08207,MMB02070C8207F,MMB02070C8207FB200,https://app.lcm-client.com/belimo/matching/40602-08207/ef351458b324e0850a46407492a78da5,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08207
159,160,Resistors,Vishay,40602-09100,MMB02070C9100F,MMB02070C9100FB700,https://app.lcm-client.com/belimo/matching/40602-09100/ef351458b324e0850a46407492a7a753,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-09100
160,161,Resistors,Vishay,40617-01108,SMM02040C1108F,SMM02040C1108FB300,https://app.lcm-client.com/belimo/matching/40617-01108/ef351458b324e0850a46407492bb4cca,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01108
161,162,Resistors,Vishay,40617-01201,MMA02040C1201F,MMA02040C1201FB300,https://app.lcm-client.com/belimo/matching/40617-01201/ef351458b324e0850a46407492bb95e2,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01201
162,163,Resistors,Vishay,40617-01201,SMM02040C1201F,SMM02040C1201FB000,https://app.lcm-client.com/belimo/matching/40617-01201/ef351458b324e0850a46407492bb972a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01201
163,164,Resistors,Vishay,40617-01202,MMA02040C1202F,MMA02040C1202FB000,https://app.lcm-client.com/belimo/matching/40617-01202/ef351458b324e0850a46407492bbf6a3,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01202
164,165,Resistors,Vishay,40617-01202,SMM02040C1202F,SMM02040C1202FB000,https://app.lcm-client.com/belimo/matching/40617-01202/ef351458b324e0850a46407492bbfc0f,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01202
165,166,Resistors,Vishay,40617-01801,MMA02040C1801F,MMA02040C1801FB000,https://app.lcm-client.com/belimo/matching/40617-01801/ef351458b324e0850a46407492be01bb,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01801
166,167,Resistors,Vishay,40617-01801,SMM02040C1801F,SMM02040C1801FB000,https://app.lcm-client.com/belimo/matching/40617-01801/ef351458b324e0850a46407492be0e90,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01801
167,168,Resistors,Vishay,40617-01808,MMA02040C1808F,MMA02040C1808FB000,https://app.lcm-client.com/belimo/matching/40617-01808/ef351458b324e0850a46407492be536e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01808
168,169,Resistors,Vishay,40617-01808,SMM02040C1808F,SMM02040C1808FB300,https://app.lcm-client.com/belimo/matching/40617-01808/ef351458b324e0850a46407492be5915,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01808
169,170,Resistors,Vishay,40617-02002,MMA02040C2002F,MMA02040C2002FB300,https://app.lcm-client.com/belimo/matching/40617-02002/ef351458b324e0850a46407492becaa5,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02002
170,171,Resistors,Vishay,40754,PR02FS0205608K,PR02FS0205608KR500,https://app.lcm-client.com/belimo/matching/40754/ef351458b324e0850a46407492c56031,nok,Automotive,Yes,y,Requires Update,https://app.lcm-client.com/belimo/part/40754
171,172,Resistors,Vishay,40754-01502,CPF215K000JN,CPF215K000JNEE6,https://app.lcm-client.com/belimo/matching/40754/ef351458b324e0850a46407492c56031,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40754-01502
172,173,Resistors,Vishay,40754-01502,PR02000201502J,PR02000201502JR500,https://app.lcm-client.com/belimo/matching/40754-01502/ef351458b324e0850a46407492c57dde,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40754-01502
173,174,Resistors,Vishay,40754-08201,CPF28K2000JN,CPF28K2000JNEE6,https://app.lcm-client.com/belimo/matching/40754-08201/ef351458b324e0850a46407492c580d0,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40754-08201
174,175,Resistors,Vishay,40754-08201,PR02000208201J,PR02000208201JR500,https://app.lcm-client.com/belimo/matching/40754-08201/ef351458b324e0850a46407492c5908d,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40754-08201
175,176,Resistors,Vishay,40754-15608,CPF25R6000JN,CPF25R6000JNEE6,https://app.lcm-client.com/belimo/matching/40754-15608/ef351458b324e0850a46407492c5b5db,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40754-15608
176,177,Resistors,Vishay,40754-15608,PR02000205608J,PR02000205608JR500,https://app.lcm-client.com/belimo/matching/40754-15608/ef351458b324e0850a46407492c5bcec,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40754-15608
177,178,Resistors,Vishay,40850,MBB02070C1101F,MBB02070C1101FRP00,https://app.lcm-client.com/belimo/matching/40850/ef351458b324e0850a46407492c6a39a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40850
178,179,Resistors,Vishay,40850,MRS25000C1101F,MRS25000C1101FRP00,https://app.lcm-client.com/belimo/matching/40850/ef351458b324e0850a46407492c6a870,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40850
179,180,Resistors,Vishay,40851,MBB02070C1501F,MBB02070C1501FRP00,https://app.lcm-client.com/belimo/matching/40851/ef351458b324e0850a46407492c6be78,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40851
180,181,Resistors,Vishay,40862,MRS25000C2203F,MRS25000C2203FRP00,https://app.lcm-client.com/belimo/matching/40862/ef351458b324e0850a46407492c741c4,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40862
181,182,Resistors,Vishay,40867,MBB02070C2403F,MBB02070C2403FRP00,https://app.lcm-client.com/belimo/matching/40867/ef351458b324e0850a46407492c751d7,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40867
182,183,Resistors,Vishay,40867,MRS25000C2403F,MRS25000C2403FRP00,https://app.lcm-client.com/belimo/matching/40867/ef351458b324e0850a46407492c755f8,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40867
183,184,Resistors,Vishay,40877,MBB02070C8661F,MBB02070C8661FRP00,https://app.lcm-client.com/belimo/matching/40877/ef351458b324e0850a46407492c770f6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40877
184,185,Resistors,Vishay,40877,MRS25000C8661F,MRS25000C8661FRP00,https://app.lcm-client.com/belimo/matching/40877/ef351458b324e0850a46407492c77fc8,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40877
185,186,Resistors,Vishay,40885,MBB02070C4221F,MBB02070C4221FRP00,https://app.lcm-client.com/belimo/matching/40885/ef351458b324e0850a46407492c78d94,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40885
186,187,Resistors,Vishay,40885,MRS25000C4221F,MRS25000C4221FRP00,https://app.lcm-client.com/belimo/matching/40885/ef351458b324e0850a46407492c791fe,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40885
187,188,Resistors,Vishay,40897,MBB02070C1009F,MBB02070C1009FRP00,https://app.lcm-client.com/belimo/matching/40897/ef351458b324e0850a46407492c85cab,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40897
188,189,Resistors,Vishay,40897,MRS25000C1009F,MRS25000C1009FRP00,https://app.lcm-client.com/belimo/matching/40897/ef351458b324e0850a46407492c85f06,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40897
189,190,Resistors,Vishay,40898,MBB02070C1102F,MBB02070C1102FRP00,https://app.lcm-client.com/belimo/matching/40898/ef351458b324e0850a46407492c87371,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40898
190,191,Resistors,Vishay,40926,MRS25000C8202F,MRS25000C8202FRP00,https://app.lcm-client.com/belimo/matching/40926/ef351458b324e0850a46407492c9893e,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40926
191,192,Resistors,Vishay,40927,MBB02070C1003F,MBB02070C1003FRP00,https://app.lcm-client.com/belimo/matching/40927/ef351458b324e0850a46407492c99e8a,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40927
192,193,Resistors,Vishay,40927,MRS25000C1003F,MRS25000C1003FRP00,https://app.lcm-client.com/belimo/matching/40927/ef351458b324e0850a46407492c9aaf7,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40927
193,194,Resistors,Vishay,40934,MRS25000C6202F,MRS25000C6202FRP00,https://app.lcm-client.com/belimo/matching/40934/ef351458b324e0850a46407492c9d6ee,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40934
194,195,Resistors,Vishay,40941,MBB02070C5602F,MBB02070C5602FRP00,https://app.lcm-client.com/belimo/matching/40941/ef351458b324e0850a46407492c9f1f8,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40941
195,196,Resistors,Vishay,40941,MRS25000C5602F,MRS25000C5602FRP00,https://app.lcm-client.com/belimo/matching/40941/ef351458b324e0850a46407492c9f940,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40941
196,197,Resistors,Vishay,40949,MBB02070C1500F,MBB02070C1500FRP00,https://app.lcm-client.com/belimo/matching/40949/ef351458b324e0850a46407492ca0e61,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40949
197,198,Resistors,Vishay,40949,MRS25000C1500F,MRS25000C1500FRP00,https://app.lcm-client.com/belimo/matching/40949/ef351458b324e0850a46407492ca16be,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40949
198,199,Resistors,Vishay,41237-01102,MMA02040D1102C,MMA02040D1102CB300,https://app.lcm-client.com/belimo/matching/40949/ef351458b324e0850a46407492ca16be,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/41237-01102
199,200,Resistors,Vishay,41749-02200,CMB02070X2200G,CMB02070X2200GB700,https://app.lcm-client.com/belimo/matching/41749-02200/ef351458b324e0850a46407492cb2e74,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/41749-02200
200,201,Resistors,Vishay,41861-02001,MCS04020D2001B,MCS04020D2001BE000,https://app.lcm-client.com/belimo/matching/41861-02001/ef351458b324e0850a46407492cd04a3,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/41861-02001
201,202,Resistors,Vishay,41861-02053,MCS04020D2053B,MCS04020D2053BE000,https://app.lcm-client.com/belimo/matching/41861-02053/ef351458b324e0850a46407492cd3674,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/41861-02053
202,203,Resistors,Vishay,41861-02702,MCS04020D2702B,MCS04020D2702BE000,https://app.lcm-client.com/belimo/matching/41861-02702/ef351458b324e0850a46407492cd5b69,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/41861-02702
203,204,Resistors,Vishay,41861-06802,MCS04020D6802B,MCS04020D6802BE000,https://app.lcm-client.com/belimo/matching/41861-06802/ef351458b324e0850a46407492cd9fd4,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/41861-06802
204,205,Resistors,Vishay,47012-02550,MBB02070C2550F,MBB02070C2550FRP00,https://app.lcm-client.com/belimo/matching/47012-02550/ef351458b324e0850a46407492d6899c,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/47012-02550
205,206,Resistors,Vishay,47012-02550,MRS25000C2550F,MRS25000C2550FRP00,https://app.lcm-client.com/belimo/matching/47012-02550/ef351458b324e0850a46407492d68c0f,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-02550
206,207,Resistors,Vishay,47012-03303,MRS25000C3303F,MRS25000C3303FRP00,https://app.lcm-client.com/belimo/matching/47012-03303/ef351458b324e0850a46407492d6aa08,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-03303
207,208,Resistors,Vishay,47012-03308,MBB02070C3308F,MBB02070C3308FRP00,https://app.lcm-client.com/belimo/matching/47012-03308/ef351458b324e0850a46407492d6c42d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47012-03308
208,209,Resistors,Vishay,47012-03308,MRS25000C3308F,MRS25000C3308FRP00,https://app.lcm-client.com/belimo/matching/47012-03308/ef351458b324e0850a46407492d6d03b,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-03308
209,210,Resistors,Vishay,47012-03830,MBB02070C3830F,MBB02070C3830FRP00,https://app.lcm-client.com/belimo/matching/47012-03830/ef351458b324e0850a46407492d6eaad,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/47012-03830
210,211,Resistors,Vishay,47042,MBB02070C1503F,MBB02070C1503FRP00,https://app.lcm-client.com/belimo/matching/47042/ef351458b324e0850a46407492d86be4,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/47042
211,212,Resistors,Vishay,47355-01279,MBB02070C1279F,MBB02070C1279FRP00,https://app.lcm-client.com/belimo/matching/47355-01279/ef351458b324e0850a46407492db9a16,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01279
212,213,Resistors,Vishay,47355-01279,MRS25000C1279F,MRS25000C1279FRP00,https://app.lcm-client.com/belimo/matching/47355-01279/ef351458b324e0850a46407492dba77c,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01279
213,214,Resistors,Vishay,47355-01501,MRS25000C1501F,MRS25000C1501FRP00,https://app.lcm-client.com/belimo/matching/47355-01501/ef351458b324e0850a46407492dbc315,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01501
214,215,Resistors,Vishay,47355-01653,MRS25000C1653F,MRS25000C1653FRP00,https://app.lcm-client.com/belimo/matching/47355-01653/ef351458b324e0850a46407492dbf3fd,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01653
215,216,Resistors,Vishay,47355-02671,MRS25000C2671F,MRS25000C2671FRP00,https://app.lcm-client.com/belimo/matching/47355-02671/ef351458b324e0850a46407492dc5b8c,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-02671
216,217,Resistors,Vishay,47355-03301,MRS25000C3301F,MRS25000C3301FRP00,https://app.lcm-client.com/belimo/matching/47355-03301/ef351458b324e0850a46407492dc82bf,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-03301
217,218,Resistors,Vishay,47355-05609,MBB02070C5609F,MBB02070C5609FRP00,https://app.lcm-client.com/belimo/matching/47355-05609/ef351458b324e0850a46407492dcab28,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-05609
218,219,Resistors,Vishay,47355-05609,MRS25000C5609F,MRS25000C5609FRP00,https://app.lcm-client.com/belimo/matching/47355-05609/ef351458b324e0850a46407492dcb421,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-05609
219,220,Resistors,Vishay,47355-05762,MBB02070C5762F,MBB02070C5762FRP00,https://app.lcm-client.com/belimo/matching/47355-05762/ef351458b324e0850a46407492dcdf45,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-05762
220,221,Resistors,Vishay,40617-01800,SMM02040C1800F,SMM02040C1800FB000,https://app.lcm-client.com/belimo/matching/40617-01800/a57dd45b8b8bfbbc6b72118464e48be7,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01800
221,222,Resistors,Vishay,40617-03001,MMA02040C3001F,MMA02040C3001FB000,https://app.lcm-client.com/belimo/matching/40617-03001/a57dd45b8b8bfbbc6b72118464e73cce,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03001
222,223,Resistors,Vishay,40617-03001,SMM02040C3001F,SMM02040C3001FB000,https://app.lcm-client.com/belimo/matching/40617-03001/a57dd45b8b8bfbbc6b72118464e74406,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03001
223,224,Resistors,Vishay,40617-03008,MMA02040C3008F,MMA02040C3008FB000,https://app.lcm-client.com/belimo/matching/40617-03008/a57dd45b8b8bfbbc6b72118464e79b6e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03008
224,225,Resistors,Vishay,40617-03008,SMM02040C3008F,SMM02040C3008FB000,https://app.lcm-client.com/belimo/matching/40617-03008/a57dd45b8b8bfbbc6b72118464e7a30e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03008
225,226,Resistors,Vishay,40617-03301,MMA02040C3301F,MMA02040C3301FB000,https://app.lcm-client.com/belimo/matching/40617-03301/a57dd45b8b8bfbbc6b72118464e81354,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03301
226,227,Resistors,Vishay,40617-03301,SMM02040C3301F,SMM02040C3301FB000,https://app.lcm-client.com/belimo/matching/40617-03301/a57dd45b8b8bfbbc6b72118464e818d6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03301
227,228,Resistors,Vishay,40617-03303,MMA02040C3303F,MMA02040C3303FB000,https://app.lcm-client.com/belimo/matching/40617-03303/a57dd45b8b8bfbbc6b72118464e88cee,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03303
228,229,Resistors,Vishay,40617-03303,SMM02040C3303F,SMM02040C3303FB000,https://app.lcm-client.com/belimo/matching/40617-03303/a57dd45b8b8bfbbc6b72118464e896d0,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03303
229,230,Resistors,Vishay,40617-03901,MMA02040C3901F,MMA02040C3901FB000,https://app.lcm-client.com/belimo/matching/40617-03901/a57dd45b8b8bfbbc6b72118464e90c53,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03901
230,231,Resistors,Vishay,47001,MBB02070C1202F,MBB02070C1202FRP00,https://app.lcm-client.com/belimo/matching/47001/c8cb570d5127ae96aaae8eee665a9f99,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47001
231,232,Resistors,Vishay,47002,MBB02070C1000F,MBB02070C1000FRP00,https://app.lcm-client.com/belimo/matching/47002/c8cb570d5127ae96aaae8eee665abee6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47002
232,233,Resistors,Vishay,47004,MBB02070C1804F,MBB02070C1804FRP00,https://app.lcm-client.com/belimo/matching/47004/c8cb570d5127ae96aaae8eee665ae642,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47004
233,234,Resistors,Vishay,47007,MBB02070C3002F,MBB02070C3002FRP00,https://app.lcm-client.com/belimo/matching/47007/c8cb570d5127ae96aaae8eee665b0d45,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47007
234,235,Resistors,Vishay,47008,MBB02070C4701F,MBB02070C4701FRP00,https://app.lcm-client.com/belimo/matching/47008/c8cb570d5127ae96aaae8eee665b34df,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47008
235,236,Resistors,Vishay,47011,MBB02070C1502F,MBB02070C1502FRP00,https://app.lcm-client.com/belimo/matching/47011/c8cb570d5127ae96aaae8eee665b5e12,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47011
236,237,Resistors,Vishay,47012-01001,MBB02070C1001F,MBB02070C1001FRP00,https://app.lcm-client.com/belimo/matching/47012-01001/c8cb570d5127ae96aaae8eee665b7c87,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47012-01001
237,238,Resistors,Vishay,47012-01001,MRS25000C1001F,MRS25000C1001FRP00,https://app.lcm-client.com/belimo/matching/47012-01001/c8cb570d5127ae96aaae8eee665b7ef3,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-01001
238,239,Resistors,Vishay,47012-02371,MBB02070C2371F,MBB02070C2371FRP00,https://app.lcm-client.com/belimo/matching/47012-02371/c8cb570d5127ae96aaae8eee665b92cf,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47012-02371
239,240,Resistors,Vishay,40602-01100,MMB02070C1100F,MMB02070C1100FB700,https://app.lcm-client.com/belimo/matching/40602-01100/ef351458b324e0850a46407492a0f34b,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01100
240,241,Resistors,Vishay,40602-02491,SMM02070C2491F,SMM02070C2491FBP00,https://app.lcm-client.com/belimo/matching/40602-02491/ef351458b324e0850a46407492a32d66,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02491
241,242,Resistors,Vishay,40602-02703,MMB02070C2703F,MMB02070C2703FB700,https://app.lcm-client.com/belimo/matching/40602-02703/ef351458b324e0850a46407492a36b57,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02703
242,243,Resistors,Vishay,40602-02703,SMM02070C2703F,SMM02070C2703FBS00,https://app.lcm-client.com/belimo/matching/40602-02703/ef351458b324e0850a46407492a3748f,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02703
243,244,Resistors,Vishay,40602-03000,MMB02070C3000F,MMB02070C3000FB700,https://app.lcm-client.com/belimo/matching/40602-03000/ef351458b324e0850a46407492a3b4b3,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-03000
244,245,Resistors,Vishay,40602-03000,SMM02070C3000F,SMM02070C3000FBS00,https://app.lcm-client.com/belimo/matching/40602-03000/ef351458b324e0850a46407492a3be47,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-03000
245,246,Resistors,Vishay,40602-03303,MMB02070C3303F,MMB02070C3303FB700,https://app.lcm-client.com/belimo/matching/40602-03303/ef351458b324e0850a46407492a3dded,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-03303
246,247,Resistors,Vishay,40602-03303,SMM02070C3303F,SMM02070C3303FBS00,https://app.lcm-client.com/belimo/matching/40602-03303/ef351458b324e0850a46407492a3e67a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-03303
247,248,Resistors,Vishay,40602-04700,MMB02070C4700F,MMB02070C4700FB700,https://app.lcm-client.com/belimo/matching/40602-04700/ef351458b324e0850a46407492a51eab,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04700
248,249,Resistors,Vishay,40602-04700,SMM02070C4700F,SMM02070C4700FBP00,https://app.lcm-client.com/belimo/matching/40602-04700/ef351458b324e0850a46407492a52341,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04700
249,250,Resistors,Vishay,40617-01108,MMA02040C1108F,MMA02040C1108FB000,https://app.lcm-client.com/belimo/matching/40617-01108/ef351458b324e0850a46407492bb453c,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01108
250,251,Resistors,Vishay,40617-02002,SMM02040C2002F,SMM02040C2002FB000,https://app.lcm-client.com/belimo/matching/40617-02002/ef351458b324e0850a46407492bed203,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02002
251,252,Resistors,Vishay,40617-02008,MMA02040C2008F,MMA02040C2008FB000,https://app.lcm-client.com/belimo/matching/40617-02008/ef351458b324e0850a46407492bf3690,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02008
252,253,Resistors,Vishay,40617-02008,SMM02040C2008F,SMM02040C2008FB000,https://app.lcm-client.com/belimo/matching/40617-02008/ef351458b324e0850a46407492bf3890,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02008
253,254,Resistors,Vishay,40617-02201,MMA02040C2001F,MMA02040C2001FB000,https://app.lcm-client.com/belimo/matching/40617-02201/ef351458b324e0850a46407492bfa0e4,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02201
254,255,Resistors,Vishay,40617-02201,SMM02040C2201F,SMM02040C2201FB000,https://app.lcm-client.com/belimo/matching/40617-02201/ef351458b324e0850a46407492bfaa90,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02201
255,256,Resistors,Vishay,40617-02202,SMM02040C2202F,SMM02040C2202FB000,https://app.lcm-client.com/belimo/matching/40617-02202/ef351458b324e0850a46407492c02755,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02202
256,257,Resistors,Vishay,40617-02402,MMA02040C2402F,MMA02040C2402FB000,https://app.lcm-client.com/belimo/matching/40617-02402/ef351458b324e0850a46407492c086bf,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02402
257,258,Resistors,Vishay,40617-02402,SMM02040C2402F,SMM02040C2402FB000,https://app.lcm-client.com/belimo/matching/40617-02402/ef351458b324e0850a46407492c09313,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02402
258,259,Resistors,Vishay,40617-02408,MMA02040C2408F,MMA02040C2408FB000,https://app.lcm-client.com/belimo/matching/40617-02408/ef351458b324e0850a46407492c0cc99,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02408
259,260,Resistors,Vishay,40862,MBB02070C2203F,MBB02070C2203FRP00,https://app.lcm-client.com/belimo/matching/40862/ef351458b324e0850a46407492c74003,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40862
260,261,Resistors,Vishay,40898,MRS25000C1102F,MRS25000C1102FRP00,https://app.lcm-client.com/belimo/matching/40898/ef351458b324e0850a46407492c879f0,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40898
261,262,Resistors,Vishay,40901,MBB02070C4992F,MBB02070C4992FRP00,https://app.lcm-client.com/belimo/matching/40901/ef351458b324e0850a46407492c8980e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40901
262,263,Resistors,Vishay,40901,MRS25000C4992F,MRS25000C4992FRP00,https://app.lcm-client.com/belimo/matching/40901/ef351458b324e0850a46407492c8a5f3,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40901
263,264,Resistors,Vishay,40913,MBB02070C2201F,MBB02070C2201FRP00,https://app.lcm-client.com/belimo/matching/40913/ef351458b324e0850a46407492c8cd11,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40913
264,265,Resistors,Vishay,40913,MRS25000C2201F,MRS25000C2201FRP00,https://app.lcm-client.com/belimo/matching/40913/ef351458b324e0850a46407492c8ced5,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40913
265,266,Resistors,Vishay,40915,MRS25000C6802F,MRS25000C6802FRP00,https://app.lcm-client.com/belimo/matching/40915/ef351458b324e0850a46407492c8f08b,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40915
266,267,Resistors,Vishay,40919,MRS25000C8201F,MRS25000C8201FRP00,https://app.lcm-client.com/belimo/matching/40919/ef351458b324e0850a46407492c91498,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40919
267,268,Resistors,Vishay,40924,MBB02070C1002F,MBB02070C1002FRP00,https://app.lcm-client.com/belimo/matching/40924/ef351458b324e0850a46407492c95e69,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40924
268,269,Resistors,Vishay,40924,MRS25000C1002F,MRS25000C1002FRP00,https://app.lcm-client.com/belimo/matching/40924/ef351458b324e0850a46407492c9667f,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40924
269,270,Resistors,Vishay,41861-01003,MCS04020D1003B,MCS04020D1003BE500,https://app.lcm-client.com/belimo/matching/41861-01003/ef351458b324e0850a46407492ccbe77,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/41861-01003
270,271,Resistors,Vishay,47012-03830,MRS25000C3830F,MRS25000C3830FRP00,https://app.lcm-client.com/belimo/matching/47012-03830/ef351458b324e0850a46407492d6f482,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-03830
271,272,Resistors,Vishay,47012-04531,MRS25000C4531F,MRS25000C4531FRP00,https://app.lcm-client.com/belimo/matching/47012-04531/ef351458b324e0850a46407492d71357,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-04531
272,273,Resistors,Vishay,47012-06192,MBB02070C6192F,MBB02070C6192FRP00,https://app.lcm-client.com/belimo/matching/47012-06192/ef351458b324e0850a46407492d72930,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47012-06192
273,274,Resistors,Vishay,47012-06192,MRS25000C6192F,MRS25000C6192FRP00,https://app.lcm-client.com/belimo/matching/47012-06192/ef351458b324e0850a46407492d735ec,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-06192
274,275,Resistors,Vishay,47013,MBB02070C5600F,MBB02070C5600FRP00,https://app.lcm-client.com/belimo/matching/47013/ef351458b324e0850a46407492d77c2d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47013
275,276,Resistors,Vishay,47016,MBB02070C2102F,MBB02070C2102FRP00,https://app.lcm-client.com/belimo/matching/47016/ef351458b324e0850a46407492d79a35,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47016
276,277,Resistors,Vishay,47017,MBB02070C2802F,MBB02070C2802FRP00,https://app.lcm-client.com/belimo/matching/47017/ef351458b324e0850a46407492d7bc7e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47017
277,278,Resistors,Vishay,47030,MBB02070C1004F,MBB02070C1004FRP00,https://app.lcm-client.com/belimo/matching/47030/ef351458b324e0850a46407492d7ea45,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47030
278,279,Resistors,Vishay,47035,MBB02070C1802F,MBB02070C1802FRP00,https://app.lcm-client.com/belimo/matching/47035/ef351458b324e0850a46407492d82ea5,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47035
279,280,Resistors,Vishay,47355-01208,MRS25000C1208F,MRS25000C1208FRP00,https://app.lcm-client.com/belimo/matching/47355-01208/a57dd45b8b8bfbbc6b72118464fc8178,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01208
280,281,Resistors,Vishay,47355-01209,MBB02070C1209F,MBB02070C1209FRP00,https://app.lcm-client.com/belimo/matching/47355-01209/a57dd45b8b8bfbbc6b72118464fca02d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01209
281,282,Resistors,Vishay,47355-01209,MRS25000C1209F,MRS25000C1209FRP00,https://app.lcm-client.com/belimo/matching/47355-01209/a57dd45b8b8bfbbc6b72118464fcacd1,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01209
282,283,Resistors,Vishay,40617-01001,MMA02040C1001F,MMA02040C1001FB000,https://app.lcm-client.com/belimo/matching/40617-01001/c8cb570d5127ae96aaae8eee66425d73,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01001
283,284,Resistors,Vishay,40617-01001,SMM02040C1001F,SMM02040C1001FB000,https://app.lcm-client.com/belimo/matching/40617-01001/c8cb570d5127ae96aaae8eee664273bd,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01001
284,285,Resistors,Vishay,40617-04701,MMA02040C4701F,MMA02040C4701FB000,https://app.lcm-client.com/belimo/matching/40617-04701/c8cb570d5127ae96aaae8eee66480626,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04701
285,286,Resistors,Vishay,40617-04701,SMM02040C4701F,SMM02040C4701FB000,https://app.lcm-client.com/belimo/matching/40617-04701/c8cb570d5127ae96aaae8eee66480c80,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04701
286,287,Resistors,Vishay,40617-04708,MMA02040C4708F,MMA02040C4708FB000,https://app.lcm-client.com/belimo/matching/40617-04708/c8cb570d5127ae96aaae8eee66486f7f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04708
287,288,Resistors,Vishay,40617-04708,SMM02040C4708F,SMM02040C4708FB000,https://app.lcm-client.com/belimo/matching/40617-04708/c8cb570d5127ae96aaae8eee6648785d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04708
288,289,Resistors,Vishay,40617-04992,MMA02040C4992F,MMA02040C4992FB000,https://app.lcm-client.com/belimo/matching/40617-04992/c8cb570d5127ae96aaae8eee6648d911,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04992
289,290,Resistors,Vishay,40602-04701,MMB02070C4701F,MMB02070C4701FB700,https://app.lcm-client.com/belimo/matching/40602-04701/ef351458b324e0850a46407492a55a67,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04701
290,291,Resistors,Vishay,40602-09100,SMM02070C9100F,SMM02070C9100FBS00,https://app.lcm-client.com/belimo/matching/40602-09100/ef351458b324e0850a46407492a7a870,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-09100
291,292,Resistors,Vishay,40617-01002,MMA02040C1002F,MMA02040C1002FB000,https://app.lcm-client.com/belimo/matching/40617-01002/ef351458b324e0850a46407492b97ffb,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01002
292,293,Resistors,Vishay,40617-01002,SMM02040C1002F,SMM02040C1002FB000,https://app.lcm-client.com/belimo/matching/40617-01002/ef351458b324e0850a46407492b98f3c,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01002
293,294,Resistors,Vishay,40617-01003,MMA02040C1003F,MMA02040C1003FB000,https://app.lcm-client.com/belimo/matching/40617-01003/ef351458b324e0850a46407492b9d7bd,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01003
294,295,Resistors,Vishay,40617-01003,SMM02040C1003F,SMM02040C1003FB000,https://app.lcm-client.com/belimo/matching/40617-01003/ef351458b324e0850a46407492b9e217,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01003
295,296,Resistors,Vishay,40617-01008,MMA02040C1008F,MMA02040C1008FB000,https://app.lcm-client.com/belimo/matching/40617-01008/ef351458b324e0850a46407492ba4463,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01008
296,297,Resistors,Vishay,40617-01008,SMM02040C1008F,SMM02040C1008FB000,https://app.lcm-client.com/belimo/matching/40617-01008/ef351458b324e0850a46407492ba493f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01008
297,298,Resistors,Vishay,40617-01009,MMA02040C1009F,MMA02040C1009FB000,https://app.lcm-client.com/belimo/matching/40617-01009/ef351458b324e0850a46407492baaa84,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01009
298,299,Resistors,Vishay,40617-01009,SMM02040C1009F,SMM02040C1009FB000,https://app.lcm-client.com/belimo/matching/40617-01009/ef351458b324e0850a46407492bab791,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01009
299,300,Resistors,Vishay,40926,MBB02070C8202F,MBB02070C8202FRP00,https://app.lcm-client.com/belimo/matching/40926/ef351458b324e0850a46407492c97f9f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40926
300,301,Resistors,Vishay,41749-06800,CMB02070X6800G,CMB02070X6800GB700,https://app.lcm-client.com/belimo/matching/41749-06800/ef351458b324e0850a46407492cb3c37,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/41749-06800
301,302,Resistors,Vishay,41770-02401,CRCW12182K40FK,CRCW12182K40FKEK,https://app.lcm-client.com/belimo/matching/41770-02401/ef351458b324e0850a46407492cb4b4c,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41770-02401
302,303,Resistors,Vishay,41770-02401,RCL12182K40FK,RCL12182K40FKEK,https://app.lcm-client.com/belimo/matching/41770-02401/ef351458b324e0850a46407492cb5a01,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41770-02401
303,304,Resistors,Vishay,41770-02709,CRCW121827R0FK,CRCW121827R0FKEK,https://app.lcm-client.com/belimo/matching/41770-02709/ef351458b324e0850a46407492cb724c,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41770-02709
304,305,Resistors,Vishay,41770-02709,RCL121827R0FK,RCL121827R0FKEK,https://app.lcm-client.com/belimo/matching/41770-02709/ef351458b324e0850a46407492cb7c46,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41770-02709
305,306,Resistors,Vishay,41770-09100,CRCW1218910RFK,CRCW1218910RFKEK,https://app.lcm-client.com/belimo/matching/41770-09100/ef351458b324e0850a46407492cb859c,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41770-09100
306,307,Resistors,Vishay,41770-09100,RCL1218910RFK,RCL1218910RFKEK,https://app.lcm-client.com/belimo/matching/41770-09100/ef351458b324e0850a46407492cb8df7,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41770-09100
307,308,Resistors,Vishay,41807-08208,CRCW25128R20JN,CRCW25128R20JNEG,https://app.lcm-client.com/belimo/matching/41807-08208/ef351458b324e0850a46407492cc6d55,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41807-08208
308,309,Resistors,Vishay,41857-04700,CMA02040X4700G,CMA02040X4700GB300,https://app.lcm-client.com/belimo/matching/41857-04700/ef351458b324e0850a46407492cc8de1,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/41857-04700
309,310,Resistors,Vishay,40550,MBB0207IC1203F,MBB0207IC1203FRP00,https://app.lcm-client.com/belimo/matching/40550/ef351458b324e0850a464074929fa8a6,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40550
310,311,Resistors,Vishay,40550,MRS25000C1203F,MRS25000C1203FRP00,https://app.lcm-client.com/belimo/matching/40550/ef351458b324e0850a464074929faa94,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40550
311,312,Resistors,Vishay,40602-01001,MMB02070C1001F,MMB02070C1001FB700,https://app.lcm-client.com/belimo/matching/40602-01001/ef351458b324e0850a464074929fd84b,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01001
312,313,Resistors,Vishay,40602-01001,SMM02070C1001F,SMM02070C1001FBS00,https://app.lcm-client.com/belimo/matching/40602-01001/ef351458b324e0850a464074929fe654,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01001
313,314,Resistors,Vishay,40602-01002,MMB02070C1002F,MMB02070C1002FB700,https://app.lcm-client.com/belimo/matching/40602-01002/ef351458b324e0850a46407492a00ad0,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01002
314,315,Resistors,Vishay,40602-01002,SMM02070C1002F,SMM02070C1002FBS00,https://app.lcm-client.com/belimo/matching/40602-01002/ef351458b324e0850a46407492a00ede,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01002
315,316,Resistors,Vishay,40602-01004,MMB02070C1004F,MMB02070C1004FB700,https://app.lcm-client.com/belimo/matching/40602-01004/ef351458b324e0850a46407492a03473,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01004
316,317,Resistors,Vishay,40602-01004,SMM02070C1004F,SMM02070C1004FBS00,https://app.lcm-client.com/belimo/matching/40602-01004/ef351458b324e0850a46407492a03d9c,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01004
317,318,Resistors,Vishay,40861,MBB02070C2202F,MBB02070C2202FRP00,https://app.lcm-client.com/belimo/matching/40861/ef351458b324e0850a46407492c733f0,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40861
318,319,Resistors,Vishay,40861,MRS25000C2202F,MRS25000C2202FRP00,https://app.lcm-client.com/belimo/matching/40861/ef351458b324e0850a46407492c73735,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40861
319,320,Resistors,Vishay,47038,MBB02070C1103F,MBB02070C1103FRP00,https://app.lcm-client.com/belimo/matching/47038/ef351458b324e0850a46407492d84967,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47038
320,321,Resistors,Vishay,47355-05762,MRS25000C5762F,MRS25000C5762FRP00,https://app.lcm-client.com/belimo/matching/47355-05762/ef351458b324e0850a46407492dceb65,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-05762
321,322,Resistors,Vishay,47355-07503,MBB02070C7503F,MBB02070C7503FRP00,https://app.lcm-client.com/belimo/matching/47355-07503/ef351458b324e0850a46407492dd0a2c,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-07503
322,323,Resistors,Vishay,47355-07503,MRS25000C7503F,MRS25000C7503FRP00,https://app.lcm-client.com/belimo/matching/47355-07503/ef351458b324e0850a46407492dd1062,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-07503
323,324,Resistors,Vishay,47355-09102,MBB02070C9102F,MBB02070C9102FRP00,https://app.lcm-client.com/belimo/matching/47355-09102/ef351458b324e0850a46407492dd3bb8,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-09102
324,325,Resistors,Vishay,47355-09102,MRS25000C9102F,MRS25000C9102FRP00,https://app.lcm-client.com/belimo/matching/47355-09102/ef351458b324e0850a46407492dd4037,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-09102
325,326,Resistors,Vishay,47355-42200,MBB02070C2200F,MBB02070C2200FRP00,https://app.lcm-client.com/belimo/matching/47355-42200/ef351458b324e0850a46407492dd65ba,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-42200
326,327,Resistors,Vishay,47355-42200,MRS25000C2200F,MRS25000C2200FRP00,https://app.lcm-client.com/belimo/matching/47355-42200/ef351458b324e0850a46407492dd696b,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-42200
327,328,Resistors,Vishay,40617-02408,SMM02040C2408F,SMM02040C2408FB000,https://app.lcm-client.com/belimo/matching/40617-02408/ef351458b324e0850a46407492c0d2b0,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02408
328,329,Resistors,Vishay,40852,MBB02070C4702F,MBB02070C4702FRP00,https://app.lcm-client.com/belimo/matching/40852/ef351458b324e0850a46407492c6d60f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40852
329,330,Resistors,Vishay,40852,MRS25000C4702F,MRS25000C4702FRP00,https://app.lcm-client.com/belimo/matching/40852/ef351458b324e0850a46407492c6e1c7,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40852
330,331,Resistors,Vishay,40853,MBB02070C5902F,MBB02070C5902FRP00,https://app.lcm-client.com/belimo/matching/40853/ef351458b324e0850a46407492c703d9,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40853
331,332,Resistors,Vishay,40853,MRS25000C5902F,MRS25000C5902FRP00,https://app.lcm-client.com/belimo/matching/40853/ef351458b324e0850a46407492c70733,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40853
332,333,Resistors,Vishay,40860,MBB02070C3001F,MBB02070C3001FRP00,https://app.lcm-client.com/belimo/matching/40860/ef351458b324e0850a46407492c71d0c,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40860
333,334,Resistors,Vishay,40860,MRS25000C3001F,MRS25000C3001FRP00,https://app.lcm-client.com/belimo/matching/40860/ef351458b324e0850a46407492c72721,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40860
334,335,Resistors,Vishay,47355-44700,MRS25000C4700F,MRS25000C4700FRP00,https://app.lcm-client.com/belimo/matching/47355-44700/ef351458b324e0850a46407492dd925e,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-44700
335,336,Resistors,TT Electronics,40617-01204,WRM0204C1M2FI,WRM0204C-1M2FI,https://app.lcm-client.com/belimo/matching/40617-01204/a57dd45b8b8bfbbc6b72118464e1e61b,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01204
336,337,Resistors,TT Electronics,40617-01211,WRM0204C1K21FI,WRM0204C-470RFI,https://app.lcm-client.com/belimo/matching/40617-01211/a57dd45b8b8bfbbc6b72118464e2c13b,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01211
337,338,Resistors,TT Electronics,40617-01800,WRM0204C180RFI,WRM0204C180RFI,https://app.lcm-client.com/belimo/matching/40617-01800/a57dd45b8b8bfbbc6b72118464e475a3,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01800
338,339,Resistors,TT Electronics,40617-01801,WRM0204C1K8FI,WRM0204C-1K8FI,https://app.lcm-client.com/belimo/matching/40617-01801/a57dd45b8b8bfbbc6b72118464e4ef28,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01801
339,340,Resistors,TT Electronics,40617-03303,WRM0204C330KFI,WRM0204C-330KFI,https://app.lcm-client.com/belimo/matching/40617-03303/a57dd45b8b8bfbbc6b72118464e87aed,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03303
340,341,Resistors,TT Electronics,40617-04700,WRM0204C470RFI,WRM0204C-470RFI,https://app.lcm-client.com/belimo/matching/40617-04700/a57dd45b8b8bfbbc6b72118464ea09cb,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04700
341,342,Resistors,TT Electronics,40615-02002,PCF1206-R-20KB,PCF1206R-20KBT1 ,https://app.lcm-client.com/belimo/matching/40615-02002/c8cb570d5127ae96aaae8eee663f84a2,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02002
342,343,Resistors,TT Electronics,40615-02202,PCF1206-R-22KB,PCF1206R-22KBT1,https://app.lcm-client.com/belimo/matching/40615-02202/c8cb570d5127ae96aaae8eee663fadb4,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02202
343,344,Resistors,TT Electronics,40615-02372,PCF1206-R-56KB,PCF1206R-56KBT1,https://app.lcm-client.com/belimo/matching/40615-02202/c8cb570d5127ae96aaae8eee663fadb4,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02372
344,345,Resistors,TT Electronics,40615-02402,PCF1206-R-24KB,PCF1206R-24KBT1,https://app.lcm-client.com/belimo/matching/40615-02402/c8cb570d5127ae96aaae8eee664021c3,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02402
345,346,Resistors,TT Electronics,40615-02492,PCF1206-R-24K9B,PCF1206R-24K9BT1,https://app.lcm-client.com/belimo/matching/40615-02492/c8cb570d5127ae96aaae8eee66405af8,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02492
346,347,Resistors,TT Electronics,40615-02552,PCF1206-R-25K5B,PCF1206R-25K5BT1,https://app.lcm-client.com/belimo/matching/40615-02552/c8cb570d5127ae96aaae8eee664087ff,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02552
347,348,Resistors,TT Electronics,40615-02702,PCF1206-R-27KB,PCF1206R-27KBT1,https://app.lcm-client.com/belimo/matching/40615-02702/c8cb570d5127ae96aaae8eee6640c2eb,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02702
348,349,Resistors,TT Electronics,40615-03922,PCF1206-R-39K2B,PCF1206R-39K2BT1,https://app.lcm-client.com/belimo/matching/40615-03922/c8cb570d5127ae96aaae8eee6640ff82,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-03922
349,350,Resistors,TT Electronics,40615-06812,PCF1206-R-68K1B,PCF1206R-68K1BT1,https://app.lcm-client.com/belimo/matching/40615-06812/c8cb570d5127ae96aaae8eee6641618e,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-06812
350,351,Resistors,TT Electronics,40615-06982,PCF1206-R-69K8B,PCF1206R-69K8BT1,https://app.lcm-client.com/belimo/matching/40615-06982/c8cb570d5127ae96aaae8eee66419452,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-06982
351,352,Resistors,TT Electronics,40615-08201,PCF1206-R-8K2B,PCF1206R-8K2BT1,https://app.lcm-client.com/belimo/matching/40615-08201/c8cb570d5127ae96aaae8eee6641c3da,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-08201
352,353,Resistors,TT Electronics,40617-01001,WRM0204C1KFI,WRM0204C-1K0FI,https://app.lcm-client.com/belimo/matching/40617-01001/c8cb570d5127ae96aaae8eee66425552,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01001
353,354,Resistors,TT Electronics,40617-04701,WRM0204C4K7FI,WRM0204C-4K7FI,https://app.lcm-client.com/belimo/matching/40617-04701/c8cb570d5127ae96aaae8eee6647ff02,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04701
354,355,Resistors,TT Electronics,40617-04992,WRM0204C49K9FI,WRM0204C-49K9FI,https://app.lcm-client.com/belimo/matching/40617-04992/c8cb570d5127ae96aaae8eee6648bd7f,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04992
355,356,Resistors,TT Electronics,40617-05109,WRM0204C51RFI,WRM0204C-51RFI,https://app.lcm-client.com/belimo/matching/40617-05109/c8cb570d5127ae96aaae8eee664944ae,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-05109
356,357,Resistors,TT Electronics,40617-05601,WRM0204C5K6FI,WRM0204C-5K6FI,https://app.lcm-client.com/belimo/matching/40617-05601/c8cb570d5127ae96aaae8eee6649b46b,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-05601
357,358,Resistors,TT Electronics,40617-06800,WRM0204C680RFI,WRM0204C-680RFI,https://app.lcm-client.com/belimo/matching/40617-06800/c8cb570d5127ae96aaae8eee664a97c6,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06800
358,359,Resistors,TT Electronics,40617-06801,WRM0204C6K8FI,WRM0204C-6K8FI,https://app.lcm-client.com/belimo/matching/40617-06801/c8cb570d5127ae96aaae8eee664b8a2f,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06801
359,360,Resistors,TT Electronics,40617-07502,WRM0204C75KFI,WRM0204C-75KFI,https://app.lcm-client.com/belimo/matching/40617-07502/c8cb570d5127ae96aaae8eee664c65a4,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-07502
360,361,Resistors,TT Electronics,40602-01001,WRM0207HPC-1K0F,WRM0207HPC-1K0FT2,https://app.lcm-client.com/belimo/matching/40602-01001/ef351458b324e0850a464074929fc757,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01001
361,362,Resistors,TT Electronics,40602-01002,WRM0207HPC-10KF,WRM0207HPC-10KFT2,https://app.lcm-client.com/belimo/matching/40602-01002/ef351458b324e0850a46407492a0014a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01002
362,363,Resistors,TT Electronics,40602-01004,WRM0207HPC-1M0F,WRM0207HPC-1M0FT2,https://app.lcm-client.com/belimo/matching/40602-01004/ef351458b324e0850a46407492a0258e,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01004
363,364,Resistors,TT Electronics,40602-01100,WRM0207HPC-110RF,WRM0207HPC-110RFT2,https://app.lcm-client.com/belimo/matching/40602-01100/ef351458b324e0850a46407492a0d9d9,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01100
364,365,Resistors,TT Electronics,40602-01501,WRM0207HPC-1K5F,WRM0207HPC-1K5FT2,https://app.lcm-client.com/belimo/matching/40602-01501/ef351458b324e0850a46407492a118c9,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01501
365,366,Resistors,TT Electronics,40602-01503,WRM0207HPC-150KF,WRM0207HPC-150KFT2,https://app.lcm-client.com/belimo/matching/40602-01503/ef351458b324e0850a46407492a15498,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01503
366,367,Resistors,TT Electronics,40602-01801,WRM0207HPC-1K8F,WRM0207HPC-1K8FT2,https://app.lcm-client.com/belimo/matching/40602-01801/ef351458b324e0850a46407492a19513,ok,Automotive,Yes,y,Requires Update,https://app.lcm-client.com/belimo/part/40602-01801
367,368,Resistors,TT Electronics,40602-02201,WRM0207HPC-2K2F,WRM0207HPC-2K2FT2,https://app.lcm-client.com/belimo/matching/40602-02201/ef351458b324e0850a46407492a1c7a2,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02201
368,369,Resistors,TT Electronics,40602-02203,WRM0207HPC-220KF,WRM0207HPC-220KFT2,https://app.lcm-client.com/belimo/matching/40602-02203/ef351458b324e0850a46407492a208f7,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02203
369,370,Resistors,TT Electronics,40602-02401,WRM0207HPC-2K4F,WRM0207HPC-2K4FT2,https://app.lcm-client.com/belimo/matching/40602-02401/ef351458b324e0850a46407492a27710,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02401
370,371,Resistors,TT Electronics,40602-02402,WRM0207HPC-24KF,WRM0207HPC-24KFT2,https://app.lcm-client.com/belimo/matching/40602-02402/ef351458b324e0850a46407492a2b96e,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02402
371,372,Resistors,TT Electronics,40602-02403,WRM0207HPC-240KF,WRM0207HPC-240KFT2,https://app.lcm-client.com/belimo/matching/40602-02403/ef351458b324e0850a46407492a2ea6d,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02403
372,373,Resistors,TT Electronics,40602-02491,WRM0207HPC-2K49F,WRM0207HPC-2K49FT2,https://app.lcm-client.com/belimo/matching/40602-02491/ef351458b324e0850a46407492a30f58,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02491
373,374,Resistors,TT Electronics,40602-02703,WRM0207HPC-270KF,WRM0207HPC-270KFT2,https://app.lcm-client.com/belimo/matching/40602-02703/ef351458b324e0850a46407492a35ee4,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02703
374,375,Resistors,TT Electronics,40602-03000,WRM0207HPC-300RF,WRM0207HPC-300RFT2,https://app.lcm-client.com/belimo/matching/40602-03000/ef351458b324e0850a46407492a39ce1,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-03000
375,376,Resistors,TT Electronics,40602-03303,WRM0207HPC-330KF,WRM0207HPC-330KFT2,https://app.lcm-client.com/belimo/matching/40602-03303/ef351458b324e0850a46407492a3cdcf,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-03303
376,377,Resistors,TT Electronics,40602-04700,WRM0207HPC-470RF,WRM0207HPC-470RFT2,https://app.lcm-client.com/belimo/matching/40602-04700/ef351458b324e0850a46407492a51cfd,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04700
377,378,Resistors,TT Electronics,40602-04701,WRM0207HPC-4K7F,WRM0207HPC-4K7FT2,https://app.lcm-client.com/belimo/matching/40602-04701/ef351458b324e0850a46407492a54e73,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04701
378,379,Resistors,TT Electronics,40602-04702,WRM0207HPC-47KF,WRM0207HPC-47KFT2,https://app.lcm-client.com/belimo/matching/40602-04702/ef351458b324e0850a46407492a58a5c,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04702
379,380,Resistors,TT Electronics,40602-04703,WRM0207HPC-470KF,WRM0207HPC-470KFT2,https://app.lcm-client.com/belimo/matching/40602-04703/ef351458b324e0850a46407492a5b923,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04703
380,381,Resistors,TT Electronics,40602-05100,WRM0207HPC-510RF,WRM0207HPC-510RFT2,https://app.lcm-client.com/belimo/matching/40602-05100/ef351458b324e0850a46407492a6084d,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05100
381,382,Resistors,TT Electronics,40602-05603,WRM0207HPC-560KF,WRM0207HPC-560KFT2,https://app.lcm-client.com/belimo/matching/40602-05603/ef351458b324e0850a46407492a64c72,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05603
382,383,Resistors,TT Electronics,40602-06209,WRM0207HPC-62RF,WRM0207HPC-62RFT2,https://app.lcm-client.com/belimo/matching/40602-06209/ef351458b324e0850a46407492a68b65,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-06209
383,384,Resistors,TT Electronics,40602-07502,WRM0207HPC-75KF,WRM0207HPC-75KFT2,https://app.lcm-client.com/belimo/matching/40602-07502/ef351458b324e0850a46407492a6d6ab,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-07502
384,385,Resistors,TT Electronics,40602-08063,WRM0207HPC-806KF,WRM0207HPC-806KFT2,https://app.lcm-client.com/belimo/matching/40602-08063/ef351458b324e0850a46407492a71c92,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08063
385,386,Resistors,TT Electronics,40602-08202,WRM0207HPC-82KF,WRM0207HPC-82KFT2,https://app.lcm-client.com/belimo/matching/40602-08202/ef351458b324e0850a46407492a75ccf,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08202
386,387,Resistors,TT Electronics,40602-09100,WRM0207HPC-910RF,WRM0207HPC-910RFT2,https://app.lcm-client.com/belimo/matching/40602-09100/ef351458b324e0850a46407492a79fec,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-09100
387,388,Resistors,TT Electronics,40615-01002,PCF1206-R-10KB,PCF1206R-10KBT1,https://app.lcm-client.com/belimo/matching/40615-01002/ef351458b324e0850a46407492b6a626,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-01002
388,389,Resistors,TT Electronics,40615-01022,PCF1206-R-10K2B,PCF1206R-10K2BT1,https://app.lcm-client.com/belimo/matching/40615-01022/ef351458b324e0850a46407492b6e25d,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-01022
389,390,Resistors,TT Electronics,40615-01213,PCF1206-R-121KB,PCF1206R-121KBT1,https://app.lcm-client.com/belimo/matching/40615-01213/ef351458b324e0850a46407492b72657,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-01213
390,391,Resistors,TT Electronics,40615-01822,PCF1206-R-18K2B,PCF1206R-18K2BT1,https://app.lcm-client.com/belimo/matching/40615-01822/ef351458b324e0850a46407492b751d0,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-01822
391,392,Resistors,TT Electronics,40617-01002,WRM0204C10KFI,WRM0204C-10KFI,https://app.lcm-client.com/belimo/matching/40617-01002/ef351458b324e0850a46407492b965cd,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01002
392,393,Resistors,TT Electronics,40617-01003,WRM0204C100KFI,WRM0204C-100KFI,https://app.lcm-client.com/belimo/matching/40617-01003/ef351458b324e0850a46407492b9d08e,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01003
393,394,Resistors,TT Electronics,40617-01108,WRM0204C1R1FI,WRM0204C-1R1FI,https://app.lcm-client.com/belimo/matching/40617-01108/ef351458b324e0850a46407492bb284b,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01108
394,395,Resistors,TT Electronics,40617-01201,WRM0204C1K2FI,WRM0204C-1K2FI,https://app.lcm-client.com/belimo/matching/40617-01201/ef351458b324e0850a46407492bb9190,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01201
395,396,Resistors,TT Electronics,40617-01202,WRM0204C12KFI,WRM0204C-12KFI,https://app.lcm-client.com/belimo/matching/40617-01202/ef351458b324e0850a46407492bbe280,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01202
396,397,Resistors,TT Electronics,40617-02002,WRM0204C20KFI,WRM0204C-20KFI,https://app.lcm-client.com/belimo/matching/40617-02002/ef351458b324e0850a46407492beb216,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02002
397,398,Resistors,TT Electronics,40617-02201,WRM0204C2K2FI,WRM0204C-2K2FI,https://app.lcm-client.com/belimo/matching/40617-02201/ef351458b324e0850a46407492bf96d3,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02201
398,399,Resistors,TT Electronics,40617-02202,WRM0204C22KFI,WRM0204C-22KFI,https://app.lcm-client.com/belimo/matching/40617-02202/ef351458b324e0850a46407492c0070f,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02202
399,400,Resistors,TT Electronics,40617-02402,WRM0204C24KFI,WRM0204C-24KFI,https://app.lcm-client.com/belimo/matching/40617-02402/ef351458b324e0850a46407492c077bb,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02402
400,401,Resistors,TT Electronics,41746-02007,LR2512-R20F,LR2512-R20FT1,https://app.lcm-client.com/belimo/matching/41746-02007/ef351458b324e0850a46407492cb1266,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41746-02007
401,402,Resistors,TT Electronics,41801-00057,LRMAP2512-R005F,LRMAP2512-R005FT4,https://app.lcm-client.com/belimo/matching/41801-00057/ef351458b324e0850a46407492cc617c,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/41801-00057
402,403,Resistors,TT Electronics,41808-01008,CHP1/8501R00J,CHP1/8501R00JLF,https://app.lcm-client.com/belimo/matching/41808-01008/ef351458b324e0850a46407492cc74b7,ok,STD,Yes,y,Obsolete,https://app.lcm-client.com/belimo/part/41808-01008
403,404,Resistors,Panasonic,41911-03001,ERJ2RKF3001,ERJ2RKF3001X,https://app.lcm-client.com/belimo/matching/41911-03001/01c0aaf7f54e36ff3a021a81ca303251,ok,Automotive,Exption,n,,
404,405,Resistors,Panasonic,41911-03301,ERJ2RKF3301,ERJ2RKF3301X,https://app.lcm-client.com/belimo/matching/41911-03301/01c0aaf7f54e36ff3a021a81ca30648f,ok,Automotive,Exption,n,,
405,406,Resistors,Panasonic,41911-05600,ERJ2RKF5600,ERJ2RKF5600X,https://app.lcm-client.com/belimo/matching/41911-05600/215374c1de05d3324b68f967dc5023c8,ok,Automotive,Exption,n,,
406,407,Resistors,Panasonic,41911-07502,ERJ2RKF7502,ERJ2RKF7502X,https://app.lcm-client.com/belimo/matching/41911-07502/215374c1de05d3324b68f967dc50b5a8,ok,Automotive,Exption,n,,
407,408,Resistors,Panasonic,41911-08203,ERJ2RKF8203,ERJ2RKF8203X,https://app.lcm-client.com/belimo/matching/41911-08203/215374c1de05d3324b68f967dc50e5fb,ok,Automotive,Exption,n,,
408,409,Resistors,Panasonic,41911-01103,ERJ2RKF1103,ERJ2RKF1103X,https://app.lcm-client.com/belimo/matching/41911-01103/46de94ed90f9f5ccd2b17e508cfa275c,ok,Automotive,Exption,n,,
409,410,Resistors,Panasonic,41911-01200,ERJ2RKF1200,ERJ2RKF1200X,https://app.lcm-client.com/belimo/matching/41911-01200/46de94ed90f9f5ccd2b17e508cfa4588,ok,Automotive,Exption,n,,
410,411,Resistors,Panasonic,41911-01302,ERJ2RKF1302,ERJ2RKF1302X,https://app.lcm-client.com/belimo/matching/41911-01302/46de94ed90f9f5ccd2b17e508cfa5fef,ok,Automotive,Exption,n,,
411,412,Resistors,Panasonic,41911-01303,ERJ2RKF1303,ERJ2RKF1303X,https://app.lcm-client.com/belimo/matching/41911-01303/46de94ed90f9f5ccd2b17e508cfa88df,ok,Automotive,Exption,n,,
412,413,Resistors,Panasonic,40613-01001,ERA6AEB102,ERA6AEB102V,https://app.lcm-client.com/belimo/matching/40613-01001/a57dd45b8b8bfbbc6b72118464d72071,ok,Automotive,Exption,n,,
413,414,Resistors,Panasonic,40613-01002,ERA6AEB103,ERA6AEB103V,https://app.lcm-client.com/belimo/matching/40613-01002/a57dd45b8b8bfbbc6b72118464d74c0c,ok,Automotive,Exption,n,,
414,415,Resistors,Panasonic,40613-01152,ERA6AEB1153,ERA6AEB1153V,https://app.lcm-client.com/belimo/matching/40613-01152/a57dd45b8b8bfbbc6b72118464d773c4,ok,Automotive,Exption,n,,
415,416,Resistors,Panasonic,40613-01271,ERA6AEB1271,ERA6AEB1271V,https://app.lcm-client.com/belimo/matching/40613-01271/a57dd45b8b8bfbbc6b72118464d7a262,ok,Automotive,Exption,n,,
416,417,Resistors,Panasonic,40613-01502,ERA6AEB1502,ERA6AEB1502V,https://app.lcm-client.com/belimo/matching/40613-01502/a57dd45b8b8bfbbc6b72118464d7ef05,ok,Automotive,Exption,n,,
417,418,Resistors,Panasonic,40613-01503,ERA6AEB1503,ERA6AEB1503V,https://app.lcm-client.com/belimo/matching/40613-01503/a57dd45b8b8bfbbc6b72118464d802b3,ok,Automotive,Exption,n,,
418,419,Resistors,Panasonic,40613-01602,ERA6AEB163,ERA6AEB163V,https://app.lcm-client.com/belimo/matching/40613-01602/a57dd45b8b8bfbbc6b72118464d8202c,ok,Automotive,Exption,n,,
419,420,Resistors,Panasonic,40613-02001,ERA6AEB2001,ERA6AEB2001V,https://app.lcm-client.com/belimo/matching/40613-02001/a57dd45b8b8bfbbc6b72118464d85572,ok,Automotive,Exption,n,,
420,421,Resistors,Panasonic,40613-02002,ERA6AEB2002,ERA6AEB2002V,https://app.lcm-client.com/belimo/matching/40613-02002/a57dd45b8b8bfbbc6b72118464d8777d,ok,Automotive,Exption,n,,
421,422,Resistors,Panasonic,40613-02432,ERA6AEB2431,ERA6AEB2431V,https://app.lcm-client.com/belimo/matching/40613-02432/a57dd45b8b8bfbbc6b72118464d8af94,ok,Automotive,Exption,n,,
422,423,Resistors,Panasonic,40613-03321,ERA6AEB3321,ERA6AEB3321V,https://app.lcm-client.com/belimo/matching/40613-03321/a57dd45b8b8bfbbc6b72118464d8e08b,ok,Automotive,Exption,n,,
423,424,Resistors,Panasonic,40613-03601,ERA6AEB362,ERA6AEB362V,https://app.lcm-client.com/belimo/matching/40613-03601/a57dd45b8b8bfbbc6b72118464d8fefd,ok,Automotive,Exption,n,,
424,425,Resistors,Panasonic,40613-04022,ERA6AEB4022,ERA6AEB4022V,https://app.lcm-client.com/belimo/matching/40613-04022/a57dd45b8b8bfbbc6b72118464da2fbb,ok,Automotive,Exption,n,,
425,426,Resistors,Panasonic,40613-06802,ERA6AEB683,ERA6AEB683V,https://app.lcm-client.com/belimo/matching/40613-06802/a57dd45b8b8bfbbc6b72118464da4c84,ok,Automotive,Exption,n,,
426,427,Resistors,Panasonic,40613-07871,ERA6AEB7871,ERA6AEB7871V,https://app.lcm-client.com/belimo/matching/40613-07871/a57dd45b8b8bfbbc6b72118464da5af6,ok,Automotive,Exption,n,,
427,428,Resistors,Panasonic,40613-09762,ERA6AEB9762,ERA6AEB9762V,https://app.lcm-client.com/belimo/matching/40613-09762/a57dd45b8b8bfbbc6b72118464da891e,ok,Automotive,Exption,n,,
428,429,Resistors,Panasonic,41911-01003,ERJ2RKF1003,ERJ2RKF1003X,https://app.lcm-client.com/belimo/matching/41911-01003/a57dd45b8b8bfbbc6b72118464f07eb4,ok,Automotive,Exption,n,,
429,430,Resistors,Panasonic,41911-01102,ERJ2RKF1102,ERJ2RKF1102X,https://app.lcm-client.com/belimo/matching/41911-01102/a57dd45b8b8bfbbc6b72118464f0d155,ok,Automotive,Exption,n,,
430,431,Resistors,Panasonic,41911-01202,ERJ2RKF1202,ERJ2RKF1202X,https://app.lcm-client.com/belimo/matching/41911-01202/a57dd45b8b8bfbbc6b72118464f1003f,ok,Automotive,Exption,n,,
431,432,Resistors,Panasonic,41911-01203,ERJ2RKF1203,ERJ2RKF1203X,https://app.lcm-client.com/belimo/matching/41911-01203/a57dd45b8b8bfbbc6b72118464f11b46,ok,Automotive,Exption,n,,
432,433,Resistors,Panasonic,41911-01402,ERJ2RKF1402,ERJ2RKF1402X,https://app.lcm-client.com/belimo/matching/41911-01402/a57dd45b8b8bfbbc6b72118464f1429e,ok,Automotive,Exption,n,,
433,434,Resistors,Panasonic,41911-01502,ERJ2RKF1502,ERJ2RKF1502X,https://app.lcm-client.com/belimo/matching/41911-01502/a57dd45b8b8bfbbc6b72118464f179f5,ok,Automotive,Exption,n,,
434,435,Resistors,Panasonic,41911-01503,ERJ2RKF1503,ERJ2RKF1503X,https://app.lcm-client.com/belimo/matching/41911-01503/a57dd45b8b8bfbbc6b72118464f1b159,ok,Automotive,Exption,n,,
435,436,Resistors,Panasonic,41911-01802,ERJ2RKF1802,ERJ2RKF1802X,https://app.lcm-client.com/belimo/matching/41911-01802/a57dd45b8b8bfbbc6b72118464f1e1f1,ok,Automotive,Exption,n,,
436,437,Resistors,Panasonic,41911-01803,ERJ2RKF1803,ERJ2RKF1803X,https://app.lcm-client.com/belimo/matching/41911-01803/a57dd45b8b8bfbbc6b72118464f210cd,ok,Automotive,Exption,n,,
437,438,Resistors,Panasonic,41911-02003,ERJ2RKF2003,ERJ2RKF2003X,https://app.lcm-client.com/belimo/matching/41911-02003/a57dd45b8b8bfbbc6b72118464f2425a,ok,Automotive,Exption,n,,
438,439,Resistors,Panasonic,41911-02200,ERJ2RKF2200,ERJ2RKF2200X,https://app.lcm-client.com/belimo/matching/41911-02200/a57dd45b8b8bfbbc6b72118464f2631d,ok,Automotive,Exption,n,,
439,440,Resistors,Panasonic,41911-02201,ERJ2RKF2201,ERJ2RKF2201X,https://app.lcm-client.com/belimo/matching/41911-02201/a57dd45b8b8bfbbc6b72118464f28fbc,ok,Automotive,Exption,n,,
440,441,Resistors,Panasonic,41911-02202,ERJ2RKF2202,ERJ2RKF2202X,https://app.lcm-client.com/belimo/matching/41911-02202/a57dd45b8b8bfbbc6b72118464f2ad6b,ok,Automotive,Exption,n,,
441,442,Resistors,Panasonic,41911-02203,ERJ2RKF2203,ERJ2RKF2203X,https://app.lcm-client.com/belimo/matching/41911-02203/a57dd45b8b8bfbbc6b72118464f2d9da,ok,Automotive,Exption,n,,
442,443,Resistors,Panasonic,47690-00001,ERJ-6ENF1003V,ERJ6ENF1003V,https://app.lcm-client.com/belimo/matching/47690-00001/a57dd45b8b8bfbbc6b72118464fe67b5,ok,Automotive,Exption,n,,
443,444,Resistors,Panasonic,47692-00001,ERJ-6ENF1783V,ERJ6ENF1783V,https://app.lcm-client.com/belimo/matching/47692-00001/a57dd45b8b8bfbbc6b72118464fe776d,ok,Automotive,Exption,n,,
444,445,Resistors,Panasonic,47694-00001,ERJ-6ENF4753V,ERJ6ENF4753V,https://app.lcm-client.com/belimo/matching/47694-00001/a57dd45b8b8bfbbc6b72118464fe8343,ok,Automotive,Exption,n,,
445,446,Resistors,Panasonic,47695-00001,ERJ-6ENF6493V,ERJ6ENF6493V,https://app.lcm-client.com/belimo/matching/47695-00001/a57dd45b8b8bfbbc6b72118464fe92ca,ok,Automotive,Exption,n,,
446,447,Resistors,Panasonic,47700-00001,ERJ-6ENF1000V,ERJ6ENF1000V,https://app.lcm-client.com/belimo/matching/47700-00001/a57dd45b8b8bfbbc6b72118464fee6c1,ok,Automotive,Exption,n,,
447,448,Resistors,Panasonic,47703-00001,ERJ-6ENF9090V,ERJ6ENF9090V,https://app.lcm-client.com/belimo/matching/47703-00001/a57dd45b8b8bfbbc6b72118464ff302b,ok,Automotive,Exption,n,,
448,449,Resistors,Panasonic,47704-00001,ERJ-8ENF1001V,ERJ8ENF1001V,https://app.lcm-client.com/belimo/matching/47704-00001/a57dd45b8b8bfbbc6b72118464ff3d4c,ok,Automotive,Exption,y,NRND,
449,450,Resistors,Panasonic,47716-00001,ERJ-8ENF62R0V,ERJ8ENF62R0V,https://app.lcm-client.com/belimo/matching/47716-00001/a57dd45b8b8bfbbc6b72118464ffbddb,ok,Automotive,Exption,y,NRND,
450,451,Resistors,Panasonic,47720-00001,ERJ-8ENF4990V,ERJ8ENF4990V,https://app.lcm-client.com/belimo/matching/47720-00001/a57dd45b8b8bfbbc6b72118464ffd9f2,ok,Automotive,Exption,y,NRND,
451,452,Resistors,Panasonic,41911-02400,ERJ2RKF2400,ERJ2RKF2400x,https://app.lcm-client.com/belimo/matching/41911-02400/c8cb570d5127ae96aaae8eee6653b5ee,ok,Automotive,Exption,n,,
452,453,Resistors,Panasonic,41911-02402,ERJ2RKF2402,ERJ2RKF2402X,https://app.lcm-client.com/belimo/matching/41911-02402/c8cb570d5127ae96aaae8eee6653e56f,ok,Automotive,Exption,n,,
453,454,Resistors,Panasonic,41911-02701,ERJ2RKF2701,ERJ2RKF2701X,https://app.lcm-client.com/belimo/matching/41911-02701/c8cb570d5127ae96aaae8eee66541a81,ok,Automotive,Exption,n,,
454,455,Resistors,Panasonic,41911-02702,ERJ2RKF2702,ERJ2RKF2702X,https://app.lcm-client.com/belimo/matching/41911-02702/c8cb570d5127ae96aaae8eee66543ebe,ok,Automotive,Exption,n,,
455,456,Resistors,Panasonic,41911-03002,ERJ2RKF3002,ERJ2RKF3002X,https://app.lcm-client.com/belimo/matching/41911-03002/c8cb570d5127ae96aaae8eee6654c2de,ok,Automotive,Exption,n,,
456,457,Resistors,Panasonic,41911-03003,ERJ2RKF3003,ERJ2RKF3003X,https://app.lcm-client.com/belimo/matching/41911-03003/c8cb570d5127ae96aaae8eee6655059a,ok,Automotive,Exption,n,,
457,458,Resistors,Panasonic,41911-03300,ERJ2RKF3300,ERJ2RKF3300X,https://app.lcm-client.com/belimo/matching/41911-03300/c8cb570d5127ae96aaae8eee66553a8c,ok,Automotive,Exption,n,,
458,459,Resistors,Panasonic,41911-03302,ERJ2RKF3302,ERJ2RKF3302X,https://app.lcm-client.com/belimo/matching/41911-03302/c8cb570d5127ae96aaae8eee66555ae8,ok,Automotive,Exption,n,,
459,460,Resistors,Panasonic,41911-03303,ERJ2RKF3303,ERJ2RKF3303X,https://app.lcm-client.com/belimo/matching/41911-03303/c8cb570d5127ae96aaae8eee665598e9,ok,Automotive,Exption,n,,
460,461,Resistors,Panasonic,41911-03900,ERJ2RKF3900,ERJ2RKF3900X,https://app.lcm-client.com/belimo/matching/41911-03900/c8cb570d5127ae96aaae8eee6655be39,ok,Automotive,Exption,n,,
461,462,Resistors,Panasonic,41911-04302,ERJ2RKF4302,ERJ2RKF4302X,https://app.lcm-client.com/belimo/matching/41911-04302/c8cb570d5127ae96aaae8eee66560497,ok,Automotive,Exption,n,,
462,463,Resistors,Panasonic,41911-04701,ERJ2RKF4703,ERJ2RKF4703X,https://app.lcm-client.com/belimo/matching/41911-04701/c8cb570d5127ae96aaae8eee66567b38,ok,Automotive,Exption,n,,
463,464,Resistors,Panasonic,41911-08872,ERJ2RKF8872,ERJ2RKF8872X,https://app.lcm-client.com/belimo/matching/41911-08872/c8cb570d5127ae96aaae8eee6658f0ba,ok,Automotive,Exption,n,,
464,465,Resistors,Panasonic,42175-03602,ERJ2RKF3602,ERJ2RKF3602X,https://app.lcm-client.com/belimo/matching/42175-03602/c8cb570d5127ae96aaae8eee6659b0b1,ok,Automotive,Exption,n,,
465,466,Resistors,Panasonic,42175-08201,ERJ2RKF8201,ERJ2RKF8201X,https://app.lcm-client.com/belimo/matching/42175-08201/c8cb570d5127ae96aaae8eee6659c7f1,ok,Automotive,Exption,n,,
466,467,Resistors,Panasonic,40412-02701,ERJ-U03D2701V,ERJU03D2701V,https://app.lcm-client.com/belimo/matching/40412-02701/ef351458b324e0850a464074929e2bee,ok,Automotive,Exption,n,,
467,468,Resistors,Panasonic,40412-02701,ERJ-U3RD2701V,ERJU3RD2701V,https://app.lcm-client.com/belimo/matching/40412-02701/ef351458b324e0850a464074929e3613,ok,Automotive,Exption,n,,
468,469,Resistors,Panasonic,41861-01003,ERA2AEB104,ERA2AEB104X,https://app.lcm-client.com/belimo/matching/41861-01003/ef351458b324e0850a46407492ccb156,ok,Automotive,Exption,n,,
469,470,Resistors,Panasonic,41861-02001,ERA2AEB202,ERA2AEB202X,https://app.lcm-client.com/belimo/matching/41861-02001/ef351458b324e0850a46407492ccefa4,ok,Automotive,Exption,n,,
470,471,Resistors,Panasonic,41861-02702,ERA2AEB273,ERA2AEB273X,https://app.lcm-client.com/belimo/matching/41861-02702/ef351458b324e0850a46407492cd4c96,ok,Automotive,Exption,n,,
471,472,Resistors,Panasonic,41861-04702,ERJ2RKF4702,ERJ2RKF4702X,https://app.lcm-client.com/belimo/matching/41861-04702/ef351458b324e0850a46407492cd780d,ok,Automotive,Exption,n,,
472,473,Resistors,Panasonic,41861-06802,ERA2AEB683,ERA2AEB683X,https://app.lcm-client.com/belimo/matching/41861-06802/ef351458b324e0850a46407492cd95c0,ok,Automotive,Exption,n,,
473,474,Resistors,Panasonic,41911-01001,ERJ2RKF1001,ERJ2RKF1001X,https://app.lcm-client.com/belimo/matching/41911-01001/ef351458b324e0850a46407492ced498,ok,Automotive,Exption,n,,
474,475,Resistors,Panasonic,41911-05102,ERJ2RKF5102,ERJ2RKF5102X,https://app.lcm-client.com/belimo/matching/41911-05102/ef351458b324e0850a46407492d19988,ok,Automotive,Exption,n,,
475,476,Resistors,Panasonic,41911-05103,ERJ2RKF5103,ERJ2RKF5103X,https://app.lcm-client.com/belimo/matching/41911-05103/ef351458b324e0850a46407492d1cc89,ok,Automotive,Exption,n,,
476,477,Resistors,Panasonic,41911-05603,ERJ2RKF5603,ERJ2RKF5603X,https://app.lcm-client.com/belimo/matching/41911-05603/ef351458b324e0850a46407492d223fb,ok,Automotive,Exption,n,,
477,478,Resistors,Panasonic,41911-06201,ERJ2RKF6201,ERJ2RKF6201X,https://app.lcm-client.com/belimo/matching/41911-06201/ef351458b324e0850a46407492d2c3d1,ok,Automotive,Exption,n,,
478,479,Resistors,Panasonic,41911-06202,ERJ2RKF6202,ERJ2RKF6202X,https://app.lcm-client.com/belimo/matching/41911-06202/ef351458b324e0850a46407492d2fe25,ok,Automotive,Exption,n,,
479,480,Resistors,Panasonic,41911-06802,ERJ2RKF6802,ERJ2RKF6802X,https://app.lcm-client.com/belimo/matching/41911-06802/ef351458b324e0850a46407492d330e8,ok,Automotive,Exption,n,,
480,481,Resistors,Panasonic,41911-06803,ERJ2RKF6803,ERJ2RKF6803X,https://app.lcm-client.com/belimo/matching/41911-06803/ef351458b324e0850a46407492d3643a,ok,Automotive,Exption,n,,
481,482,Resistors,Panasonic,41911-06809,ERJ2RKF68R0,ERJ2RKF68R0X,https://app.lcm-client.com/belimo/matching/41911-06809/ef351458b324e0850a46407492d3ab42,ok,Automotive,Exption,n,,
482,483,Resistors,Panasonic,47673-00001,ERJ-6ENF1151V,ERJ6ENF1151V,https://app.lcm-client.com/belimo/matching/47673-00001/ef351458b324e0850a46407492de2ab2,ok,Automotive,Exption,n,,
483,484,Resistors,Panasonic,47678-00001,ERJ-6ENF4301V,ERJ6ENF4301V,https://app.lcm-client.com/belimo/matching/47678-00001/ef351458b324e0850a46407492de700b,ok,Automotive,Exption,n,,
484,485,Resistors,Panasonic,47682-00001,ERJ-6ENF1912V,ERJ6ENF1912V,https://app.lcm-client.com/belimo/matching/47682-00001/ef351458b324e0850a46407492decfd2,ok,Automotive,Exption,n,,
485,486,Resistors,TDK,40138,B57620C5102J,B57620C5102J062,https://app.lcm-client.com/belimo/matching/40138/ef351458b324e0850a464074929dd12c,ok,STD,Yes,y,Requires Update,https://app.lcm-client.com/belimo/part/40138

@ -0,0 +1,487 @@
,Pos,Category,Manufacturer,CPN,MPN,MPN_Matched,Link,Status,State,ROHS,report_belimo,Comment,CPN_Link
0,1,Resistors,Vishay,41749-01509,CMB02070X1509,CMB02070X1509JB200 ,https://app.lcm-client.com/belimo/matching/41749-01509/46de94ed90f9f5ccd2b17e508cf7765a,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/41749-01509
1,2,Resistors,Vishay,40613-01001,MCU08050D1001B,MCU08050D1001BP500,https://app.lcm-client.com/belimo/matching/40613-01001/a57dd45b8b8bfbbc6b72118464d732a4,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01001
2,3,Resistors,Vishay,40613-01002,MCU08050D1002B,MCU08050D1002BP500,https://app.lcm-client.com/belimo/matching/40613-01002/a57dd45b8b8bfbbc6b72118464d75801,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01002
3,4,Resistors,Vishay,40613-01152,MCU08050D1152B,MCU08050D1152BP500,https://app.lcm-client.com/belimo/matching/40613-01152/a57dd45b8b8bfbbc6b72118464d7859d,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01152
4,5,Resistors,Vishay,40613-01271,MCU08050D1271B,MCU08050D1271BP500,https://app.lcm-client.com/belimo/matching/40613-01271/a57dd45b8b8bfbbc6b72118464d7c5d9,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01271
5,6,Resistors,Vishay,40613-01300,MCU08050D1300B,MCU08050D1300BP500,https://app.lcm-client.com/belimo/matching/40613-01300/a57dd45b8b8bfbbc6b72118464d7dde1,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01300
6,7,Resistors,Vishay,40613-01502,MCU08050D1502B,MCU08050D1502BP500,https://app.lcm-client.com/belimo/matching/40613-01502/a57dd45b8b8bfbbc6b72118464d7f9ab,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01502
7,8,Resistors,Vishay,40613-01503,MCU08050D1503B,MCU08050D1503BP500,https://app.lcm-client.com/belimo/matching/40613-01503/a57dd45b8b8bfbbc6b72118464d80785,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01503
8,9,Resistors,Vishay,40613-01602,MCU08050D1602B,MCU08050D1602BP500,https://app.lcm-client.com/belimo/matching/40613-01602/a57dd45b8b8bfbbc6b72118464d82cc5,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01602
9,10,Resistors,Vishay,40613-02001,MCU08050D2001B,MCU08050D2001BP500,https://app.lcm-client.com/belimo/matching/40613-02001/a57dd45b8b8bfbbc6b72118464d863d6,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-02001
10,11,Resistors,Vishay,40617-01208,SMM02040C1208F,SMM02040C1208FB300,https://app.lcm-client.com/belimo/matching/40617-01208/a57dd45b8b8bfbbc6b72118464e27bef,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01208
11,12,Resistors,Vishay,40617-01208,MMA02040C1211F,MMA02040C1211FB300,https://app.lcm-client.com/belimo/matching/40617-01211/a57dd45b8b8bfbbc6b72118464e2d494,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01208
12,13,Resistors,Vishay, 40617-01211,SMM02040C1211F,SMM02040C1211FB300,https://app.lcm-client.com/belimo/matching/40617-01211/a57dd45b8b8bfbbc6b72118464e2d5e6,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/ 40617-01211
13,14,Resistors,Vishay,40617-01211,MMA02040C1308F,MMA02040C1308FB300,https://app.lcm-client.com/belimo/matching/40617-01308/a57dd45b8b8bfbbc6b72118464e330ad,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01211
14,15,Resistors,Vishay,40617-01308,SMM02040C1308F,SMM02040C1308FB300,https://app.lcm-client.com/belimo/matching/40617-01308/a57dd45b8b8bfbbc6b72118464e3356a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01308
15,16,Resistors,Vishay,40617-01308,MMA02040C1508F,MMA02040C1508FB300,https://app.lcm-client.com/belimo/matching/40617-01508/a57dd45b8b8bfbbc6b72118464e39977,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01308
16,17,Resistors,Vishay,40617-01508,SMM02040C1508F,SMM02040C1508FB300,https://app.lcm-client.com/belimo/matching/40617-01508/a57dd45b8b8bfbbc6b72118464e3a808,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01508
17,18,Resistors,Vishay,40617-01508,MMA02040C1509F,MMA02040C1509FB300,https://app.lcm-client.com/belimo/matching/40617-01509/a57dd45b8b8bfbbc6b72118464e40ddc,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01508
18,19,Resistors,Vishay,40617-01509,SMM02040C1509F,SMM02040C1509FB300,https://app.lcm-client.com/belimo/matching/40617-01509/a57dd45b8b8bfbbc6b72118464e41200,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01509
19,20,Resistors,Vishay,40617-01509,MMA02040C1800F,MMA02040C1800FB300,https://app.lcm-client.com/belimo/matching/40617-01800/a57dd45b8b8bfbbc6b72118464e48179,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01509
20,21,Resistors,Vishay,40617-03901,SMM02040C3901F,SMM02040C3901FB300,https://app.lcm-client.com/belimo/matching/40617-03901/a57dd45b8b8bfbbc6b72118464e91b53,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03901
21,22,Resistors,Vishay,40617-04301,MMA02040C4301F,MMA02040C4301FB300,https://app.lcm-client.com/belimo/matching/40617-04301/a57dd45b8b8bfbbc6b72118464e98b90,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04301
22,23,Resistors,Vishay,40617-04301,SMM02040C4301F,SMM02040C4301FB300,https://app.lcm-client.com/belimo/matching/40617-04301/a57dd45b8b8bfbbc6b72118464e9917e,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04301
23,24,Resistors,Vishay,40617-04700,MMA02040C4700F,MMA02040C4700FB300,https://app.lcm-client.com/belimo/matching/40617-04700/a57dd45b8b8bfbbc6b72118464ea276d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04700
24,25,Resistors,Vishay,40617-04700,SMM02040C4700F,SMM02040C4700FB300,https://app.lcm-client.com/belimo/matching/40617-04700/a57dd45b8b8bfbbc6b72118464ea2ceb,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04700
25,26,Resistors,Vishay,47180,MBB02070C1052F,MBB02070C1052FRP00,https://app.lcm-client.com/belimo/matching/47180/a57dd45b8b8bfbbc6b72118464f9e611,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47180
26,27,Resistors,Vishay,47181,MBB02070C7322F,MBB02070C7322FRP00,https://app.lcm-client.com/belimo/matching/47181/a57dd45b8b8bfbbc6b72118464fa0d74,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47181
27,28,Resistors,Vishay,47182,MBB02070C8062F,MBB02070C8062FR100 ,https://app.lcm-client.com/belimo/matching/47182/a57dd45b8b8bfbbc6b72118464fa284b,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47182
28,29,Resistors,Vishay,47183,MBB02070C2873F,MBB02070C2873FRP00,https://app.lcm-client.com/belimo/matching/47183/a57dd45b8b8bfbbc6b72118464fa487f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47183
29,30,Resistors,Vishay,47184,MBB02070C4304F,MBB02070C4304FRP00,https://app.lcm-client.com/belimo/matching/47184/a57dd45b8b8bfbbc6b72118464fa7121,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47184
30,31,Resistors,Vishay,47340,MBB02070C4531F,MBB02070C4531FRP00,https://app.lcm-client.com/belimo/matching/47340/a57dd45b8b8bfbbc6b72118464fbae15,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47340
31,32,Resistors,Vishay,47341,MBB02070C5601F,MBB02070C5601FRP00,https://app.lcm-client.com/belimo/matching/47341/a57dd45b8b8bfbbc6b72118464fbbb63,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47341
32,33,Resistors,Vishay,47342,MBB02070C4423F,MBB02070C4423FRP00,https://app.lcm-client.com/belimo/matching/47342/a57dd45b8b8bfbbc6b72118464fbd854,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47342
33,34,Resistors,Vishay,47343,MBB02070C2671F,MBB02070C2671FRP00,https://app.lcm-client.com/belimo/matching/47343/a57dd45b8b8bfbbc6b72118464fbf0df,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47343
34,35,Resistors,Vishay,47344,MBB02070C6202F,MBB02070C6202FRP00,https://app.lcm-client.com/belimo/matching/47344/a57dd45b8b8bfbbc6b72118464fc0ace,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47344
35,36,Resistors,Vishay,47355-01104,MBB02070C1104F,MBB02070C1104FRP00,https://app.lcm-client.com/belimo/matching/47355-01104/a57dd45b8b8bfbbc6b72118464fc27b6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01104
36,37,Resistors,Vishay,47355-01104,MRS25000C1104F,MRS25000C1104FRP00,https://app.lcm-client.com/belimo/matching/47355-01104/a57dd45b8b8bfbbc6b72118464fc3277,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01104
37,38,Resistors,Vishay,47355-01153,MBB02070C1153F,MBB02070C1153FRP00,https://app.lcm-client.com/belimo/matching/47355-01153/a57dd45b8b8bfbbc6b72118464fc55bf,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01153
38,39,Resistors,Vishay,47355-01153,MRS25000C1153F,MRS25000C1153FRP00 ,https://app.lcm-client.com/belimo/matching/47355-01153/a57dd45b8b8bfbbc6b72118464fc6578,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01153
39,40,Resistors,Vishay,47355-01208,MBB02070C1208F,MBB02070C1208FRP00,https://app.lcm-client.com/belimo/matching/47355-01208/a57dd45b8b8bfbbc6b72118464fc73ef,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01208
40,41,Resistors,Vishay,40617-04992,SMM02040C4992F,SMM02040C4992FB300,https://app.lcm-client.com/belimo/matching/40617-04992/c8cb570d5127ae96aaae8eee6648e367,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04992
41,42,Resistors,Vishay,40617-05109,MMA02040C5109F,MMA02040C5109FB300,https://app.lcm-client.com/belimo/matching/40617-05109/c8cb570d5127ae96aaae8eee66495230,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-05109
42,43,Resistors,Vishay,40617-05109,SMM02040C5109F,SMM02040C5109FB300,https://app.lcm-client.com/belimo/matching/40617-05109/c8cb570d5127ae96aaae8eee66496136,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-05109
43,44,Resistors,Vishay,40617-05601,MMA02040C5601F,MMA02040C5601FB300,https://app.lcm-client.com/belimo/matching/40617-05601/c8cb570d5127ae96aaae8eee6649c485,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-05601
44,45,Resistors,Vishay,40617-05601,SMM02040C5601F,SMM02040C5601FB300,https://app.lcm-client.com/belimo/matching/40617-05601/c8cb570d5127ae96aaae8eee6649c730,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-05601
45,46,Resistors,Vishay,40617-06208,MMA02040C6208F,MMA02040C6208FB300,https://app.lcm-client.com/belimo/matching/40617-06208/c8cb570d5127ae96aaae8eee664a2dc7,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06208
46,47,Resistors,Vishay,40617-06208,SMM02040C6208F,SMM02040C6208FB300,https://app.lcm-client.com/belimo/matching/40617-06208/c8cb570d5127ae96aaae8eee664a3d62,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06208
47,48,Resistors,Vishay,40617-06800,MMA02040C6800F,MMA02040C6800FB300,https://app.lcm-client.com/belimo/matching/40617-06800/c8cb570d5127ae96aaae8eee664aadfe,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06800
48,49,Resistors,Vishay,40617-06800,SMM02040C6800F,SMM02040C6800FB300,https://app.lcm-client.com/belimo/matching/40617-06800/c8cb570d5127ae96aaae8eee664ab3f4,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06800
49,50,Resistors,Vishay,40617-06801,MMA02040C6801F,MMA02040C6801FB300,https://app.lcm-client.com/belimo/matching/40617-06801/c8cb570d5127ae96aaae8eee664b9f72,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06801
50,51,Resistors,Vishay,40618-07502,CRCW251275K0JN,CRCW251275K0JNEG,https://app.lcm-client.com/belimo/matching/40618-07502/c8cb570d5127ae96aaae8eee664dbba8,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/40618-07502
51,52,Resistors,Vishay,40663-03307,MMB02070C3307J,MMB02070C3307JB200,https://app.lcm-client.com/belimo/matching/40663-03307/c8cb570d5127ae96aaae8eee664ded91,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40663-03307
52,53,Resistors,Vishay,40663-05107,MMB02070C5107J,MMB02070C5107JB200,https://app.lcm-client.com/belimo/matching/40663-05107/c8cb570d5127ae96aaae8eee664e0785,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40663-05107
53,54,Resistors,Vishay,40701-01001,PR01000101001F,PR01000101001FR500,https://app.lcm-client.com/belimo/matching/40701-01001/c8cb570d5127ae96aaae8eee664e1100,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40701-01001
54,55,Resistors,Vishay,40702,MBE04140C8200F,MBE04140C8200FR200,https://app.lcm-client.com/belimo/matching/40702/c8cb570d5127ae96aaae8eee664e2354,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40702
55,56,Resistors,Vishay,40703-04990,PR02000204990F,PR02000204990FR500,https://app.lcm-client.com/belimo/matching/40703-04990/c8cb570d5127ae96aaae8eee664e3084,nok,Automotive,Yes,y,Missing In LCM,https://app.lcm-client.com/belimo/part/40703-04990
56,57,Resistors,Vishay,40710-05600,CPF3560R00FKE,CPF3560R00FKEE6,https://app.lcm-client.com/belimo/matching/40710-05600/c8cb570d5127ae96aaae8eee664e4712,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40710-05600
57,58,Resistors,Vishay,40710-05600,CPF3560R00FLE,CPF3560R00FLE36,https://app.lcm-client.com/belimo/matching/40710-05600/c8cb570d5127ae96aaae8eee664e48da,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40710-05600
58,59,Resistors,Vishay,41917-02208,RCS12062R20JN,RCS12062R20JNEA,https://app.lcm-client.com/belimo/matching/41917-02208/c8cb570d5127ae96aaae8eee66591f88,ok,STD,Exption,n,,https://app.lcm-client.com/belimo/part/41917-02208
59,60,Resistors,Vishay,41917-02209,RCS120622R0JN,RCS120622R0JNEA,https://app.lcm-client.com/belimo/matching/41917-02209/c8cb570d5127ae96aaae8eee66593e8b,ok,STD,Exption,n,,https://app.lcm-client.com/belimo/part/41917-02209
60,61,Resistors,Vishay,47012-02371,MRS25000C2371F,MRS25000C2371FRP00,https://app.lcm-client.com/belimo/matching/47012-02371/c8cb570d5127ae96aaae8eee665ba18c,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-02371
61,62,Resistors,Vishay,47012-02400,MBB02070C2400F,MBB02070C2400FRP00,https://app.lcm-client.com/belimo/matching/47012-02400/c8cb570d5127ae96aaae8eee665bc184,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47012-02400
62,63,Resistors,Vishay,47012-02400,MRS25000C2400F,MRS25000C2400FRP00,https://app.lcm-client.com/belimo/matching/47012-02400/c8cb570d5127ae96aaae8eee665bcc30,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47012-02400
63,64,Resistors,Vishay,47072,MBB02070C3301F,MBB02070C3301FRP00,https://app.lcm-client.com/belimo/matching/47072/c8cb570d5127ae96aaae8eee665e3813,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47072
64,65,Resistors,Vishay,47080,MBB02070C1603F,MBB02070C1603FRP00,https://app.lcm-client.com/belimo/matching/47080/c8cb570d5127ae96aaae8eee665e5210,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47080
65,66,Resistors,Vishay,47100,MBB02070C4122F,MBB02070C4122FRP00,https://app.lcm-client.com/belimo/matching/47100/c8cb570d5127ae96aaae8eee665e71cc,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47100
66,67,Resistors,Vishay,47101,MBB02070C1479F,MBB02070C1479FRP00,https://app.lcm-client.com/belimo/matching/47101/c8cb570d5127ae96aaae8eee665e9aa1,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47101
67,68,Resistors,Vishay,47102,MBB02070C8871F,MBB02070C8871FRP00,https://app.lcm-client.com/belimo/matching/47102/c8cb570d5127ae96aaae8eee665eb013,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47102
68,69,Resistors,Vishay,47103,MBB02070C2491F,MBB02070C2491FRP00,https://app.lcm-client.com/belimo/matching/47103/c8cb570d5127ae96aaae8eee665ed09c,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47103
69,70,Resistors,Vishay,47122,MBB02070C1583F,MBB02070C1583FRP00,https://app.lcm-client.com/belimo/matching/47122/c8cb570d5127ae96aaae8eee665f1b46,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47122
70,71,Resistors,Vishay,47142,MBB02070C8201F,MBB02070C8201FRP00,https://app.lcm-client.com/belimo/matching/47142/c8cb570d5127ae96aaae8eee66606f98,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47142
71,72,Resistors,Vishay,47145,MBB02070C1203F,MBB02070C1203FRP00,https://app.lcm-client.com/belimo/matching/47145/c8cb570d5127ae96aaae8eee6660a704,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47145
72,73,Resistors,Vishay,47162,MBB02070C5362F,MBB02070C5362FRP00,https://app.lcm-client.com/belimo/matching/47162/c8cb570d5127ae96aaae8eee6660c3c6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47162
73,74,Resistors,Vishay,47168,MBB02070C3003F,MBB02070C3003FRP00,https://app.lcm-client.com/belimo/matching/47168/c8cb570d5127ae96aaae8eee6660fe68,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47168
74,75,Resistors,Vishay,47179,MBB02070C9760F,MBB02070C9760FRP00,https://app.lcm-client.com/belimo/matching/47179/c8cb570d5127ae96aaae8eee666120a3,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47179
75,76,Resistors,Vishay,40412-02701,CRCW06032K70DH,CRCW06032K70DHEAP,https://app.lcm-client.com/belimo/matching/40412-02701/ef351458b324e0850a464074929e4c4e,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/40412-02701
76,77,Resistors,Vishay,40412-02701,CRCW06032K70DK,CRCW06032K70DHEAP,https://app.lcm-client.com/belimo/matching/40412-02701/ef351458b324e0850a464074929e54c2,ok,Automotive,Exption,y,PPM Difference,https://app.lcm-client.com/belimo/part/40412-02701
77,78,Resistors,Vishay,40542,MBB02070C2702F,MBB02070C2702FRP00 ,https://app.lcm-client.com/belimo/matching/40542/ef351458b324e0850a464074929f8a38,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40542
78,79,Resistors,Vishay,40542,MBB0207IC2702F,MBB0207IC2702FRP00,https://app.lcm-client.com/belimo/matching/40542/ef351458b324e0850a464074929f962a,nok,Medical,Yes,y,Missing In LCM,https://app.lcm-client.com/belimo/part/40542
79,80,Resistors,Vishay,40542,MRS25000C2702F,MRS25000C2702FRP00,https://app.lcm-client.com/belimo/matching/40542/ef351458b324e0850a464074929f971d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40542
80,81,Resistors,Vishay,40602-01100,SMM02070C1100F,SMM02070C1100FBS00,https://app.lcm-client.com/belimo/matching/40602-01100/ef351458b324e0850a46407492a0fcf3,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01100
81,82,Resistors,Vishay,40602-01501,MMB02070C1501F,MMB02070C1501FB700,https://app.lcm-client.com/belimo/matching/40602-01501/ef351458b324e0850a46407492a1312e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01501
82,83,Resistors,Vishay,40602-01501,SMM02070C1501F,SMM02070C1501FBS00,https://app.lcm-client.com/belimo/matching/40602-01501/ef351458b324e0850a46407492a13317,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01501
83,84,Resistors,Vishay,40602-01503,MMB02070C1503F,MMB02070C1503FB200,https://app.lcm-client.com/belimo/matching/40602-01503/ef351458b324e0850a46407492a166ca,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01503
84,85,Resistors,Vishay,40602-01503,SMM02070C1503F,SMM02070C1503FBS00,https://app.lcm-client.com/belimo/matching/40602-01503/ef351458b324e0850a46407492a172df,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01503
85,86,Resistors,Vishay,40602-01801,MMB02070C1801F,MMB02070C1801FB700,https://app.lcm-client.com/belimo/matching/40602-01801/ef351458b324e0850a46407492a19e31,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01801
86,87,Resistors,Vishay,40602-01801,SMM02070C1801F,SMM02070C1801FBS00,https://app.lcm-client.com/belimo/matching/40602-01801/ef351458b324e0850a46407492a1adcd,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01801
87,88,Resistors,Vishay,40602-02201,MMB02070C2201F,MMB02070C2201FB700,https://app.lcm-client.com/belimo/matching/40602-02201/ef351458b324e0850a46407492a1e4d1,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02201
88,89,Resistors,Vishay,40602-02201,SMM02070C2201F,SMM02070C2201FBS00,https://app.lcm-client.com/belimo/matching/40602-02201/ef351458b324e0850a46407492a1e7f8,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02201
89,90,Resistors,Vishay,40602-02203,MMB02070C2203F,MMB02070C2203FB200,https://app.lcm-client.com/belimo/matching/40602-02203/ef351458b324e0850a46407492a21787,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02203
90,91,Resistors,Vishay,40602-04701,SMM02070C4701F,SMM02070C4701FBS00,https://app.lcm-client.com/belimo/matching/40602-04701/ef351458b324e0850a46407492a55cd6,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04701
91,92,Resistors,Vishay,40602-04702,MMB02070C4702F,MMB02070C4702FB200,https://app.lcm-client.com/belimo/matching/40602-04702/ef351458b324e0850a46407492a5987a,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04702
92,93,Resistors,Vishay,40602-04702,SMM02070C4702F,SMM02070C4702FBS00 ,https://app.lcm-client.com/belimo/matching/40602-04702/ef351458b324e0850a46407492a59e12,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04702
93,94,Resistors,Vishay,40602-04703,MMB02070C4703F,MMB02070C4703FB200 ,https://app.lcm-client.com/belimo/matching/40602-04703/ef351458b324e0850a46407492a5c84a,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04703
94,95,Resistors,Vishay,40602-04703,SMM02070C4703F,SMM02070C4703FBS00,https://app.lcm-client.com/belimo/matching/40602-04703/ef351458b324e0850a46407492a5cef1,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04703
95,96,Resistors,Vishay,40602-05100,MMB02070C5100F,MMB02070C5100FB700,https://app.lcm-client.com/belimo/matching/40602-05100/ef351458b324e0850a46407492a6213a,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05100
96,97,Resistors,Vishay,40602-05100,SMM02070C5100F,SMM02070C5100FBP00,https://app.lcm-client.com/belimo/matching/40602-05100/ef351458b324e0850a46407492a628ff,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05100
97,98,Resistors,Vishay,40602-05603,MMB02070C5603F,MMB02070C5603FB700,https://app.lcm-client.com/belimo/matching/40602-05603/ef351458b324e0850a46407492a653e8,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05603
98,99,Resistors,Vishay,40602-05603,SMM02070C5603F,SMM02070C5603FBS00,https://app.lcm-client.com/belimo/matching/40602-05603/ef351458b324e0850a46407492a65dfb,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05603
99,100,Resistors,Vishay,40602-05607,MMB02070C5607F,MMB02070C5607FB200,https://app.lcm-client.com/belimo/matching/40602-05607/ef351458b324e0850a46407492a66cc9,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05607
100,101,Resistors,Vishay,40613-02002,MCU08050D2002B,MCU08050D2002BP500,https://app.lcm-client.com/belimo/matching/40613-02002/a57dd45b8b8bfbbc6b72118464d889cb,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-02002
101,102,Resistors,Vishay,40613-02432,MCU08050D2431B,MCU08050D2431BP500,https://app.lcm-client.com/belimo/matching/40613-02432/a57dd45b8b8bfbbc6b72118464d8b980,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-02432
102,103,Resistors,Vishay,40613-03321,MCU08050D3321B,MCU08050D3321BP500,https://app.lcm-client.com/belimo/matching/40613-03321/a57dd45b8b8bfbbc6b72118464d8ef7d,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-03321
103,104,Resistors,Vishay,40613-03601,MCU08050D3601B,MCU08050D3601BP500,https://app.lcm-client.com/belimo/matching/40613-03601/a57dd45b8b8bfbbc6b72118464d918c6,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-03601
104,105,Resistors,Vishay,40613-04022,MCU08050D4022B,MCU08050D4022BP500,https://app.lcm-client.com/belimo/matching/40613-04022/a57dd45b8b8bfbbc6b72118464da3edf,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-04022
105,106,Resistors,Vishay,40613-06802,MCU08050D6802B,MCU08050D6802BP500,https://app.lcm-client.com/belimo/matching/40613-06802/a57dd45b8b8bfbbc6b72118464da579b,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-06802
106,107,Resistors,Vishay,40613-07871,MCU08050D7871B,MCU08050D7871BP500,https://app.lcm-client.com/belimo/matching/40613-07871/a57dd45b8b8bfbbc6b72118464da6f4d,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-07871
107,108,Resistors,Vishay,40613-09762,MCU08050D9762B,MCU08050D9762BP500,https://app.lcm-client.com/belimo/matching/40613-09762/a57dd45b8b8bfbbc6b72118464da97e7,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-09762
108,109,Resistors,Vishay,40617-01204,MMA02040C1205F,MMA02040C1205FB300,https://app.lcm-client.com/belimo/matching/40617-01204/a57dd45b8b8bfbbc6b72118464e1f209,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01204
109,110,Resistors,Vishay,40617-01208,MMA02040C1208F,MMA02040C1208FB300,https://app.lcm-client.com/belimo/matching/40617-01208/a57dd45b8b8bfbbc6b72118464e26c1f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01208
110,111,Resistors,Vishay,47215,MBB02070C3603F,MBB02070C3603FRP00,https://app.lcm-client.com/belimo/matching/47215/a57dd45b8b8bfbbc6b72118464fa91aa,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47215
111,112,Resistors,Vishay,47232,MBB02070C5622F,MBB02070C5622FRP00,https://app.lcm-client.com/belimo/matching/47232/a57dd45b8b8bfbbc6b72118464fabb7c,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47232
112,113,Resistors,Vishay,47245,MBB02070C1330F,MBB02070C1330FRP00,https://app.lcm-client.com/belimo/matching/47245/a57dd45b8b8bfbbc6b72118464fadaf4,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47245
113,114,Resistors,Vishay,47251,MBB02070C1371F,MBB02070C1371FRP00,https://app.lcm-client.com/belimo/matching/47251/a57dd45b8b8bfbbc6b72118464faf77a,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47251
114,115,Resistors,Vishay,47274,MBB02070C1108F,MBB02070C1108FRP00,https://app.lcm-client.com/belimo/matching/47274/a57dd45b8b8bfbbc6b72118464fb1287,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47274
115,116,Resistors,Vishay,47313,MBB02070C3303F,MBB02070C3303FRP00,https://app.lcm-client.com/belimo/matching/47313/a57dd45b8b8bfbbc6b72118464fb22db,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47313
116,117,Resistors,Vishay,47315,MBB02070C1604F,MBB02070C1604FRP00,https://app.lcm-client.com/belimo/matching/47315/a57dd45b8b8bfbbc6b72118464fb3e0d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47315
117,118,Resistors,Vishay,47316,MBB02070C4704F,MBB02070C4704FRP00,https://app.lcm-client.com/belimo/matching/47316/a57dd45b8b8bfbbc6b72118464fb5c4f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47316
118,119,Resistors,Vishay,47337,MBB02070C2002F,MBB02070C2002FRP00,https://app.lcm-client.com/belimo/matching/47337/a57dd45b8b8bfbbc6b72118464fb756d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47337
119,120,Resistors,Vishay,47339,MBB02070C6802F,MBB02070C6802FRP00,https://app.lcm-client.com/belimo/matching/47339/a57dd45b8b8bfbbc6b72118464fb8f39,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47339
120,121,Resistors,Vishay,40617-06801,SMM02040C6801F,SMM02040C6801FB000,https://app.lcm-client.com/belimo/matching/40617-06801/c8cb570d5127ae96aaae8eee664ba638,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06801
121,122,Resistors,Vishay,40617-06807,MMA02040C6807F,MMA02040C6807FB300,https://app.lcm-client.com/belimo/matching/40617-06807/c8cb570d5127ae96aaae8eee664c0b79,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06807
122,123,Resistors,Vishay,40617-06807,SMM02040B6807J,SMM02040B6807JB000,https://app.lcm-client.com/belimo/matching/40617-06807/c8cb570d5127ae96aaae8eee664c1061,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06807
123,124,Resistors,Vishay,40617-07502,MMA02040C7502F,MMA02040C7502FB200,https://app.lcm-client.com/belimo/matching/40617-07502/c8cb570d5127ae96aaae8eee664c7046,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-07502
124,125,Resistors,Vishay,40617-07502,SMM02040C7502F,SMM02040C7502FB000,https://app.lcm-client.com/belimo/matching/40617-07502/c8cb570d5127ae96aaae8eee664c780d,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-07502
125,126,Resistors,Vishay,40617-09107,MMA02040C9107F,MMA02040C9107FB300,https://app.lcm-client.com/belimo/matching/40617-09107/c8cb570d5127ae96aaae8eee664cd373,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-09107
126,127,Resistors,Vishay,40617-09107,SMM02040C9107F,SMM02040C9107FB000,https://app.lcm-client.com/belimo/matching/40617-09107/c8cb570d5127ae96aaae8eee664cd73a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-09107
127,128,Resistors,Vishay,40618-01001,CRCW25121K00JN,CRCW25121K00JNEG,https://app.lcm-client.com/belimo/matching/40618-01001/c8cb570d5127ae96aaae8eee664d0cdc,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/40618-01001
128,129,Resistors,Vishay,40618-01501,CRCW25121K50JN,CRCW25121K50JNEG,https://app.lcm-client.com/belimo/matching/40618-01501/c8cb570d5127ae96aaae8eee664d2f90,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/40618-01501
129,130,Resistors,Vishay,40618-02401,CRCW25122K40JN,CRCW25122K40JNEG,https://app.lcm-client.com/belimo/matching/40618-02401/c8cb570d5127ae96aaae8eee664d5a8d,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/40618-02401
130,131,Resistors,Vishay,47123,MBB02070C1873F,MBB02070C1873FRP00,https://app.lcm-client.com/belimo/matching/47123/c8cb570d5127ae96aaae8eee665f3f95,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47123
131,132,Resistors,Vishay,47125,MBB02070C1008F,MBB02070C1008FRP00,https://app.lcm-client.com/belimo/matching/47125/c8cb570d5127ae96aaae8eee665f5b74,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47125
132,133,Resistors,Vishay,47131,MBB02070C6193F,MBB02070C6193FRP00,https://app.lcm-client.com/belimo/matching/47131/c8cb570d5127ae96aaae8eee665f8495,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47131
133,134,Resistors,Vishay,47132,MBB02070C3323F,MBB02070C3323FRP00,https://app.lcm-client.com/belimo/matching/47132/c8cb570d5127ae96aaae8eee665fa357,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47132
134,135,Resistors,Vishay,47133,MBB02070C1433F,MBB02070C1433FRP00,https://app.lcm-client.com/belimo/matching/47133/c8cb570d5127ae96aaae8eee665fc181,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47133
135,136,Resistors,Vishay,47137,MBB02070C4700F,MBB02070C4700FRP00,https://app.lcm-client.com/belimo/matching/47137/c8cb570d5127ae96aaae8eee665fddc6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47137
136,137,Resistors,Vishay,47138,MBB02070C1653F,MBB02070C1653FRP00,https://app.lcm-client.com/belimo/matching/47138/c8cb570d5127ae96aaae8eee6660128b,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47138
137,138,Resistors,Vishay,47139,MBB02070C9104F,MBB02070C9104FRP00,https://app.lcm-client.com/belimo/matching/47139/c8cb570d5127ae96aaae8eee66602471,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47139
138,139,Resistors,Vishay,47140,MBB02070C3652F,MBB02070C3652FRP00,https://app.lcm-client.com/belimo/matching/47140/c8cb570d5127ae96aaae8eee6660397f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47140
139,140,Resistors,Vishay,47141,MBB02070C4873F,MBB02070C4873FRP00,https://app.lcm-client.com/belimo/matching/47141/c8cb570d5127ae96aaae8eee66605f85,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47141
140,141,Resistors,Vishay,40602-02203,SMM02070C2203F,SMM02070C2203FBS00,https://app.lcm-client.com/belimo/matching/40602-02203/ef351458b324e0850a46407492a2262b,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02203
141,142,Resistors,Vishay,40602-02204,MMB02070C2204F,MMB02070C2204FB200,https://app.lcm-client.com/belimo/matching/40602-02204/ef351458b324e0850a46407492a250b9,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02204
142,143,Resistors,Vishay,40602-02204,SMM02070C2204F,SMM02070C2204FBS00,https://app.lcm-client.com/belimo/matching/40602-02204/ef351458b324e0850a46407492a2542a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02204
143,144,Resistors,Vishay,40602-02401,MMB02070C2401F,MMB02070C2401FB200,https://app.lcm-client.com/belimo/matching/40602-02401/ef351458b324e0850a46407492a28bcc,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02401
144,145,Resistors,Vishay,40602-02401,SMM02070C2401F,SMM02070C2401FBS00,https://app.lcm-client.com/belimo/matching/40602-02401/ef351458b324e0850a46407492a295bf,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02401
145,146,Resistors,Vishay,40602-02402,MMB02070C2402F,MMB02070C2402FB200,https://app.lcm-client.com/belimo/matching/40602-02402/ef351458b324e0850a46407492a2d0e4,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02402
146,147,Resistors,Vishay,40602-02402,SMM02070C2402F,SMM02070C2402FBS00,https://app.lcm-client.com/belimo/matching/40602-02402/ef351458b324e0850a46407492a2d8ad,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02402
147,148,Resistors,Vishay,40602-02403,MMB02070C2403F,MMB02070C2403FB700,https://app.lcm-client.com/belimo/matching/40602-02403/ef351458b324e0850a46407492a2f357,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02403
148,149,Resistors,Vishay,40602-02403,SMM02070C2403F,SMM02070C2403FBP00,https://app.lcm-client.com/belimo/matching/40602-02403/ef351458b324e0850a46407492a2ffb8,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02403
149,150,Resistors,Vishay,40602-02491,MMB02070C2491F,MMB02070C2491FB700,https://app.lcm-client.com/belimo/matching/40602-02491/ef351458b324e0850a46407492a32ce6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02491
150,151,Resistors,Vishay,40602-06209,MMB02070C6209F,MMB02070C6209FB200,https://app.lcm-client.com/belimo/matching/40602-06209/ef351458b324e0850a46407492a6a237,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-06209
151,152,Resistors,Vishay,40602-06209,SMM02070C6209F,SMM02070C6209FBP00,https://app.lcm-client.com/belimo/matching/40602-06209/ef351458b324e0850a46407492a6a9a2,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-06209
152,153,Resistors,Vishay,40602-07502,MMB02070C7502F,MMB02070C7502FB700,https://app.lcm-client.com/belimo/matching/40602-07502/ef351458b324e0850a46407492a6e1c2,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-07502
153,154,Resistors,Vishay,40602-07502,SMM02070C7502F,SMM02070C7502FBS00,https://app.lcm-client.com/belimo/matching/40602-07502/ef351458b324e0850a46407492a6ee06,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-07502
154,155,Resistors,Vishay,40602-08063,MMB02070C8063F,MMB02070C8063FB700,https://app.lcm-client.com/belimo/matching/40602-08063/ef351458b324e0850a46407492a7303b,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08063
155,156,Resistors,Vishay,40602-08063,SMM02070C8063F,SMM02070C8063FBP00,https://app.lcm-client.com/belimo/matching/40602-08063/ef351458b324e0850a46407492a737bf,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08063
156,157,Resistors,Vishay,40602-08202,MMB02070C8202F,MMB02070C8202FB300,https://app.lcm-client.com/belimo/matching/40602-08202/ef351458b324e0850a46407492a76d3e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08202
157,158,Resistors,Vishay,40602-08202,SMM02070C8202F,SMM02070C8202FBS00,https://app.lcm-client.com/belimo/matching/40602-08202/ef351458b324e0850a46407492a770da,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08202
158,159,Resistors,Vishay,40602-08207,MMB02070C8207F,MMB02070C8207FB200,https://app.lcm-client.com/belimo/matching/40602-08207/ef351458b324e0850a46407492a78da5,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08207
159,160,Resistors,Vishay,40602-09100,MMB02070C9100F,MMB02070C9100FB700,https://app.lcm-client.com/belimo/matching/40602-09100/ef351458b324e0850a46407492a7a753,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-09100
160,161,Resistors,Vishay,40617-01108,SMM02040C1108F,SMM02040C1108FB300,https://app.lcm-client.com/belimo/matching/40617-01108/ef351458b324e0850a46407492bb4cca,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01108
161,162,Resistors,Vishay,40617-01201,MMA02040C1201F,MMA02040C1201FB300,https://app.lcm-client.com/belimo/matching/40617-01201/ef351458b324e0850a46407492bb95e2,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01201
162,163,Resistors,Vishay,40617-01201,SMM02040C1201F,SMM02040C1201FB000,https://app.lcm-client.com/belimo/matching/40617-01201/ef351458b324e0850a46407492bb972a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01201
163,164,Resistors,Vishay,40617-01202,MMA02040C1202F,MMA02040C1202FB000,https://app.lcm-client.com/belimo/matching/40617-01202/ef351458b324e0850a46407492bbf6a3,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01202
164,165,Resistors,Vishay,40617-01202,SMM02040C1202F,SMM02040C1202FB000,https://app.lcm-client.com/belimo/matching/40617-01202/ef351458b324e0850a46407492bbfc0f,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01202
165,166,Resistors,Vishay,40617-01801,MMA02040C1801F,MMA02040C1801FB000,https://app.lcm-client.com/belimo/matching/40617-01801/ef351458b324e0850a46407492be01bb,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01801
166,167,Resistors,Vishay,40617-01801,SMM02040C1801F,SMM02040C1801FB000,https://app.lcm-client.com/belimo/matching/40617-01801/ef351458b324e0850a46407492be0e90,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01801
167,168,Resistors,Vishay,40617-01808,MMA02040C1808F,MMA02040C1808FB000,https://app.lcm-client.com/belimo/matching/40617-01808/ef351458b324e0850a46407492be536e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01808
168,169,Resistors,Vishay,40617-01808,SMM02040C1808F,SMM02040C1808FB300,https://app.lcm-client.com/belimo/matching/40617-01808/ef351458b324e0850a46407492be5915,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01808
169,170,Resistors,Vishay,40617-02002,MMA02040C2002F,MMA02040C2002FB300,https://app.lcm-client.com/belimo/matching/40617-02002/ef351458b324e0850a46407492becaa5,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02002
170,171,Resistors,Vishay,40754,PR02FS0205608K,PR02FS0205608KR500,https://app.lcm-client.com/belimo/matching/40754/ef351458b324e0850a46407492c56031,nok,Automotive,Yes,y,Requires Update,https://app.lcm-client.com/belimo/part/40754
171,172,Resistors,Vishay,40754-01502,CPF215K000JN,CPF215K000JNEE6,https://app.lcm-client.com/belimo/matching/40754/ef351458b324e0850a46407492c56031,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40754-01502
172,173,Resistors,Vishay,40754-01502,PR02000201502J,PR02000201502JR500,https://app.lcm-client.com/belimo/matching/40754-01502/ef351458b324e0850a46407492c57dde,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40754-01502
173,174,Resistors,Vishay,40754-08201,CPF28K2000JN,CPF28K2000JNEE6,https://app.lcm-client.com/belimo/matching/40754-08201/ef351458b324e0850a46407492c580d0,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40754-08201
174,175,Resistors,Vishay,40754-08201,PR02000208201J,PR02000208201JR500,https://app.lcm-client.com/belimo/matching/40754-08201/ef351458b324e0850a46407492c5908d,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40754-08201
175,176,Resistors,Vishay,40754-15608,CPF25R6000JN,CPF25R6000JNEE6,https://app.lcm-client.com/belimo/matching/40754-15608/ef351458b324e0850a46407492c5b5db,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40754-15608
176,177,Resistors,Vishay,40754-15608,PR02000205608J,PR02000205608JR500,https://app.lcm-client.com/belimo/matching/40754-15608/ef351458b324e0850a46407492c5bcec,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40754-15608
177,178,Resistors,Vishay,40850,MBB02070C1101F,MBB02070C1101FRP00,https://app.lcm-client.com/belimo/matching/40850/ef351458b324e0850a46407492c6a39a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40850
178,179,Resistors,Vishay,40850,MRS25000C1101F,MRS25000C1101FRP00,https://app.lcm-client.com/belimo/matching/40850/ef351458b324e0850a46407492c6a870,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40850
179,180,Resistors,Vishay,40851,MBB02070C1501F,MBB02070C1501FRP00,https://app.lcm-client.com/belimo/matching/40851/ef351458b324e0850a46407492c6be78,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40851
180,181,Resistors,Vishay,40862,MRS25000C2203F,MRS25000C2203FRP00,https://app.lcm-client.com/belimo/matching/40862/ef351458b324e0850a46407492c741c4,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40862
181,182,Resistors,Vishay,40867,MBB02070C2403F,MBB02070C2403FRP00,https://app.lcm-client.com/belimo/matching/40867/ef351458b324e0850a46407492c751d7,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40867
182,183,Resistors,Vishay,40867,MRS25000C2403F,MRS25000C2403FRP00,https://app.lcm-client.com/belimo/matching/40867/ef351458b324e0850a46407492c755f8,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40867
183,184,Resistors,Vishay,40877,MBB02070C8661F,MBB02070C8661FRP00,https://app.lcm-client.com/belimo/matching/40877/ef351458b324e0850a46407492c770f6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40877
184,185,Resistors,Vishay,40877,MRS25000C8661F,MRS25000C8661FRP00,https://app.lcm-client.com/belimo/matching/40877/ef351458b324e0850a46407492c77fc8,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40877
185,186,Resistors,Vishay,40885,MBB02070C4221F,MBB02070C4221FRP00,https://app.lcm-client.com/belimo/matching/40885/ef351458b324e0850a46407492c78d94,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40885
186,187,Resistors,Vishay,40885,MRS25000C4221F,MRS25000C4221FRP00,https://app.lcm-client.com/belimo/matching/40885/ef351458b324e0850a46407492c791fe,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40885
187,188,Resistors,Vishay,40897,MBB02070C1009F,MBB02070C1009FRP00,https://app.lcm-client.com/belimo/matching/40897/ef351458b324e0850a46407492c85cab,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40897
188,189,Resistors,Vishay,40897,MRS25000C1009F,MRS25000C1009FRP00,https://app.lcm-client.com/belimo/matching/40897/ef351458b324e0850a46407492c85f06,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40897
189,190,Resistors,Vishay,40898,MBB02070C1102F,MBB02070C1102FRP00,https://app.lcm-client.com/belimo/matching/40898/ef351458b324e0850a46407492c87371,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40898
190,191,Resistors,Vishay,40926,MRS25000C8202F,MRS25000C8202FRP00,https://app.lcm-client.com/belimo/matching/40926/ef351458b324e0850a46407492c9893e,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40926
191,192,Resistors,Vishay,40927,MBB02070C1003F,MBB02070C1003FRP00,https://app.lcm-client.com/belimo/matching/40927/ef351458b324e0850a46407492c99e8a,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40927
192,193,Resistors,Vishay,40927,MRS25000C1003F,MRS25000C1003FRP00,https://app.lcm-client.com/belimo/matching/40927/ef351458b324e0850a46407492c9aaf7,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40927
193,194,Resistors,Vishay,40934,MRS25000C6202F,MRS25000C6202FRP00,https://app.lcm-client.com/belimo/matching/40934/ef351458b324e0850a46407492c9d6ee,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40934
194,195,Resistors,Vishay,40941,MBB02070C5602F,MBB02070C5602FRP00,https://app.lcm-client.com/belimo/matching/40941/ef351458b324e0850a46407492c9f1f8,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40941
195,196,Resistors,Vishay,40941,MRS25000C5602F,MRS25000C5602FRP00,https://app.lcm-client.com/belimo/matching/40941/ef351458b324e0850a46407492c9f940,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40941
196,197,Resistors,Vishay,40949,MBB02070C1500F,MBB02070C1500FRP00,https://app.lcm-client.com/belimo/matching/40949/ef351458b324e0850a46407492ca0e61,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40949
197,198,Resistors,Vishay,40949,MRS25000C1500F,MRS25000C1500FRP00,https://app.lcm-client.com/belimo/matching/40949/ef351458b324e0850a46407492ca16be,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40949
198,199,Resistors,Vishay,41237-01102,MMA02040D1102C,MMA02040D1102CB300,https://app.lcm-client.com/belimo/matching/40949/ef351458b324e0850a46407492ca16be,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/41237-01102
199,200,Resistors,Vishay,41749-02200,CMB02070X2200G,CMB02070X2200GB700,https://app.lcm-client.com/belimo/matching/41749-02200/ef351458b324e0850a46407492cb2e74,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/41749-02200
200,201,Resistors,Vishay,41861-02001,MCS04020D2001B,MCS04020D2001BE000,https://app.lcm-client.com/belimo/matching/41861-02001/ef351458b324e0850a46407492cd04a3,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/41861-02001
201,202,Resistors,Vishay,41861-02053,MCS04020D2053B,MCS04020D2053BE000,https://app.lcm-client.com/belimo/matching/41861-02053/ef351458b324e0850a46407492cd3674,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/41861-02053
202,203,Resistors,Vishay,41861-02702,MCS04020D2702B,MCS04020D2702BE000,https://app.lcm-client.com/belimo/matching/41861-02702/ef351458b324e0850a46407492cd5b69,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/41861-02702
203,204,Resistors,Vishay,41861-06802,MCS04020D6802B,MCS04020D6802BE000,https://app.lcm-client.com/belimo/matching/41861-06802/ef351458b324e0850a46407492cd9fd4,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/41861-06802
204,205,Resistors,Vishay,47012-02550,MBB02070C2550F,MBB02070C2550FRP00,https://app.lcm-client.com/belimo/matching/47012-02550/ef351458b324e0850a46407492d6899c,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/47012-02550
205,206,Resistors,Vishay,47012-02550,MRS25000C2550F,MRS25000C2550FRP00,https://app.lcm-client.com/belimo/matching/47012-02550/ef351458b324e0850a46407492d68c0f,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-02550
206,207,Resistors,Vishay,47012-03303,MRS25000C3303F,MRS25000C3303FRP00,https://app.lcm-client.com/belimo/matching/47012-03303/ef351458b324e0850a46407492d6aa08,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-03303
207,208,Resistors,Vishay,47012-03308,MBB02070C3308F,MBB02070C3308FRP00,https://app.lcm-client.com/belimo/matching/47012-03308/ef351458b324e0850a46407492d6c42d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47012-03308
208,209,Resistors,Vishay,47012-03308,MRS25000C3308F,MRS25000C3308FRP00,https://app.lcm-client.com/belimo/matching/47012-03308/ef351458b324e0850a46407492d6d03b,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-03308
209,210,Resistors,Vishay,47012-03830,MBB02070C3830F,MBB02070C3830FRP00,https://app.lcm-client.com/belimo/matching/47012-03830/ef351458b324e0850a46407492d6eaad,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/47012-03830
210,211,Resistors,Vishay,47042,MBB02070C1503F,MBB02070C1503FRP00,https://app.lcm-client.com/belimo/matching/47042/ef351458b324e0850a46407492d86be4,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/47042
211,212,Resistors,Vishay,47355-01279,MBB02070C1279F,MBB02070C1279FRP00,https://app.lcm-client.com/belimo/matching/47355-01279/ef351458b324e0850a46407492db9a16,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01279
212,213,Resistors,Vishay,47355-01279,MRS25000C1279F,MRS25000C1279FRP00,https://app.lcm-client.com/belimo/matching/47355-01279/ef351458b324e0850a46407492dba77c,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01279
213,214,Resistors,Vishay,47355-01501,MRS25000C1501F,MRS25000C1501FRP00,https://app.lcm-client.com/belimo/matching/47355-01501/ef351458b324e0850a46407492dbc315,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01501
214,215,Resistors,Vishay,47355-01653,MRS25000C1653F,MRS25000C1653FRP00,https://app.lcm-client.com/belimo/matching/47355-01653/ef351458b324e0850a46407492dbf3fd,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01653
215,216,Resistors,Vishay,47355-02671,MRS25000C2671F,MRS25000C2671FRP00,https://app.lcm-client.com/belimo/matching/47355-02671/ef351458b324e0850a46407492dc5b8c,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-02671
216,217,Resistors,Vishay,47355-03301,MRS25000C3301F,MRS25000C3301FRP00,https://app.lcm-client.com/belimo/matching/47355-03301/ef351458b324e0850a46407492dc82bf,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-03301
217,218,Resistors,Vishay,47355-05609,MBB02070C5609F,MBB02070C5609FRP00,https://app.lcm-client.com/belimo/matching/47355-05609/ef351458b324e0850a46407492dcab28,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-05609
218,219,Resistors,Vishay,47355-05609,MRS25000C5609F,MRS25000C5609FRP00,https://app.lcm-client.com/belimo/matching/47355-05609/ef351458b324e0850a46407492dcb421,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-05609
219,220,Resistors,Vishay,47355-05762,MBB02070C5762F,MBB02070C5762FRP00,https://app.lcm-client.com/belimo/matching/47355-05762/ef351458b324e0850a46407492dcdf45,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-05762
220,221,Resistors,Vishay,40617-01800,SMM02040C1800F,SMM02040C1800FB000,https://app.lcm-client.com/belimo/matching/40617-01800/a57dd45b8b8bfbbc6b72118464e48be7,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01800
221,222,Resistors,Vishay,40617-03001,MMA02040C3001F,MMA02040C3001FB000,https://app.lcm-client.com/belimo/matching/40617-03001/a57dd45b8b8bfbbc6b72118464e73cce,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03001
222,223,Resistors,Vishay,40617-03001,SMM02040C3001F,SMM02040C3001FB000,https://app.lcm-client.com/belimo/matching/40617-03001/a57dd45b8b8bfbbc6b72118464e74406,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03001
223,224,Resistors,Vishay,40617-03008,MMA02040C3008F,MMA02040C3008FB000,https://app.lcm-client.com/belimo/matching/40617-03008/a57dd45b8b8bfbbc6b72118464e79b6e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03008
224,225,Resistors,Vishay,40617-03008,SMM02040C3008F,SMM02040C3008FB000,https://app.lcm-client.com/belimo/matching/40617-03008/a57dd45b8b8bfbbc6b72118464e7a30e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03008
225,226,Resistors,Vishay,40617-03301,MMA02040C3301F,MMA02040C3301FB000,https://app.lcm-client.com/belimo/matching/40617-03301/a57dd45b8b8bfbbc6b72118464e81354,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03301
226,227,Resistors,Vishay,40617-03301,SMM02040C3301F,SMM02040C3301FB000,https://app.lcm-client.com/belimo/matching/40617-03301/a57dd45b8b8bfbbc6b72118464e818d6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03301
227,228,Resistors,Vishay,40617-03303,MMA02040C3303F,MMA02040C3303FB000,https://app.lcm-client.com/belimo/matching/40617-03303/a57dd45b8b8bfbbc6b72118464e88cee,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03303
228,229,Resistors,Vishay,40617-03303,SMM02040C3303F,SMM02040C3303FB000,https://app.lcm-client.com/belimo/matching/40617-03303/a57dd45b8b8bfbbc6b72118464e896d0,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03303
229,230,Resistors,Vishay,40617-03901,MMA02040C3901F,MMA02040C3901FB000,https://app.lcm-client.com/belimo/matching/40617-03901/a57dd45b8b8bfbbc6b72118464e90c53,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03901
230,231,Resistors,Vishay,47001,MBB02070C1202F,MBB02070C1202FRP00,https://app.lcm-client.com/belimo/matching/47001/c8cb570d5127ae96aaae8eee665a9f99,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47001
231,232,Resistors,Vishay,47002,MBB02070C1000F,MBB02070C1000FRP00,https://app.lcm-client.com/belimo/matching/47002/c8cb570d5127ae96aaae8eee665abee6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47002
232,233,Resistors,Vishay,47004,MBB02070C1804F,MBB02070C1804FRP00,https://app.lcm-client.com/belimo/matching/47004/c8cb570d5127ae96aaae8eee665ae642,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47004
233,234,Resistors,Vishay,47007,MBB02070C3002F,MBB02070C3002FRP00,https://app.lcm-client.com/belimo/matching/47007/c8cb570d5127ae96aaae8eee665b0d45,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47007
234,235,Resistors,Vishay,47008,MBB02070C4701F,MBB02070C4701FRP00,https://app.lcm-client.com/belimo/matching/47008/c8cb570d5127ae96aaae8eee665b34df,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47008
235,236,Resistors,Vishay,47011,MBB02070C1502F,MBB02070C1502FRP00,https://app.lcm-client.com/belimo/matching/47011/c8cb570d5127ae96aaae8eee665b5e12,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47011
236,237,Resistors,Vishay,47012-01001,MBB02070C1001F,MBB02070C1001FRP00,https://app.lcm-client.com/belimo/matching/47012-01001/c8cb570d5127ae96aaae8eee665b7c87,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47012-01001
237,238,Resistors,Vishay,47012-01001,MRS25000C1001F,MRS25000C1001FRP00,https://app.lcm-client.com/belimo/matching/47012-01001/c8cb570d5127ae96aaae8eee665b7ef3,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-01001
238,239,Resistors,Vishay,47012-02371,MBB02070C2371F,MBB02070C2371FRP00,https://app.lcm-client.com/belimo/matching/47012-02371/c8cb570d5127ae96aaae8eee665b92cf,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47012-02371
239,240,Resistors,Vishay,40602-01100,MMB02070C1100F,MMB02070C1100FB700,https://app.lcm-client.com/belimo/matching/40602-01100/ef351458b324e0850a46407492a0f34b,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01100
240,241,Resistors,Vishay,40602-02491,SMM02070C2491F,SMM02070C2491FBP00,https://app.lcm-client.com/belimo/matching/40602-02491/ef351458b324e0850a46407492a32d66,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02491
241,242,Resistors,Vishay,40602-02703,MMB02070C2703F,MMB02070C2703FB700,https://app.lcm-client.com/belimo/matching/40602-02703/ef351458b324e0850a46407492a36b57,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02703
242,243,Resistors,Vishay,40602-02703,SMM02070C2703F,SMM02070C2703FBS00,https://app.lcm-client.com/belimo/matching/40602-02703/ef351458b324e0850a46407492a3748f,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02703
243,244,Resistors,Vishay,40602-03000,MMB02070C3000F,MMB02070C3000FB700,https://app.lcm-client.com/belimo/matching/40602-03000/ef351458b324e0850a46407492a3b4b3,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-03000
244,245,Resistors,Vishay,40602-03000,SMM02070C3000F,SMM02070C3000FBS00,https://app.lcm-client.com/belimo/matching/40602-03000/ef351458b324e0850a46407492a3be47,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-03000
245,246,Resistors,Vishay,40602-03303,MMB02070C3303F,MMB02070C3303FB700,https://app.lcm-client.com/belimo/matching/40602-03303/ef351458b324e0850a46407492a3dded,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-03303
246,247,Resistors,Vishay,40602-03303,SMM02070C3303F,SMM02070C3303FBS00,https://app.lcm-client.com/belimo/matching/40602-03303/ef351458b324e0850a46407492a3e67a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-03303
247,248,Resistors,Vishay,40602-04700,MMB02070C4700F,MMB02070C4700FB700,https://app.lcm-client.com/belimo/matching/40602-04700/ef351458b324e0850a46407492a51eab,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04700
248,249,Resistors,Vishay,40602-04700,SMM02070C4700F,SMM02070C4700FBP00,https://app.lcm-client.com/belimo/matching/40602-04700/ef351458b324e0850a46407492a52341,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04700
249,250,Resistors,Vishay,40617-01108,MMA02040C1108F,MMA02040C1108FB000,https://app.lcm-client.com/belimo/matching/40617-01108/ef351458b324e0850a46407492bb453c,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01108
250,251,Resistors,Vishay,40617-02002,SMM02040C2002F,SMM02040C2002FB000,https://app.lcm-client.com/belimo/matching/40617-02002/ef351458b324e0850a46407492bed203,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02002
251,252,Resistors,Vishay,40617-02008,MMA02040C2008F,MMA02040C2008FB000,https://app.lcm-client.com/belimo/matching/40617-02008/ef351458b324e0850a46407492bf3690,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02008
252,253,Resistors,Vishay,40617-02008,SMM02040C2008F,SMM02040C2008FB000,https://app.lcm-client.com/belimo/matching/40617-02008/ef351458b324e0850a46407492bf3890,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02008
253,254,Resistors,Vishay,40617-02201,MMA02040C2001F,MMA02040C2001FB000,https://app.lcm-client.com/belimo/matching/40617-02201/ef351458b324e0850a46407492bfa0e4,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02201
254,255,Resistors,Vishay,40617-02201,SMM02040C2201F,SMM02040C2201FB000,https://app.lcm-client.com/belimo/matching/40617-02201/ef351458b324e0850a46407492bfaa90,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02201
255,256,Resistors,Vishay,40617-02202,SMM02040C2202F,SMM02040C2202FB000,https://app.lcm-client.com/belimo/matching/40617-02202/ef351458b324e0850a46407492c02755,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02202
256,257,Resistors,Vishay,40617-02402,MMA02040C2402F,MMA02040C2402FB000,https://app.lcm-client.com/belimo/matching/40617-02402/ef351458b324e0850a46407492c086bf,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02402
257,258,Resistors,Vishay,40617-02402,SMM02040C2402F,SMM02040C2402FB000,https://app.lcm-client.com/belimo/matching/40617-02402/ef351458b324e0850a46407492c09313,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02402
258,259,Resistors,Vishay,40617-02408,MMA02040C2408F,MMA02040C2408FB000,https://app.lcm-client.com/belimo/matching/40617-02408/ef351458b324e0850a46407492c0cc99,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02408
259,260,Resistors,Vishay,40862,MBB02070C2203F,MBB02070C2203FRP00,https://app.lcm-client.com/belimo/matching/40862/ef351458b324e0850a46407492c74003,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40862
260,261,Resistors,Vishay,40898,MRS25000C1102F,MRS25000C1102FRP00,https://app.lcm-client.com/belimo/matching/40898/ef351458b324e0850a46407492c879f0,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40898
261,262,Resistors,Vishay,40901,MBB02070C4992F,MBB02070C4992FRP00,https://app.lcm-client.com/belimo/matching/40901/ef351458b324e0850a46407492c8980e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40901
262,263,Resistors,Vishay,40901,MRS25000C4992F,MRS25000C4992FRP00,https://app.lcm-client.com/belimo/matching/40901/ef351458b324e0850a46407492c8a5f3,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40901
263,264,Resistors,Vishay,40913,MBB02070C2201F,MBB02070C2201FRP00,https://app.lcm-client.com/belimo/matching/40913/ef351458b324e0850a46407492c8cd11,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40913
264,265,Resistors,Vishay,40913,MRS25000C2201F,MRS25000C2201FRP00,https://app.lcm-client.com/belimo/matching/40913/ef351458b324e0850a46407492c8ced5,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40913
265,266,Resistors,Vishay,40915,MRS25000C6802F,MRS25000C6802FRP00,https://app.lcm-client.com/belimo/matching/40915/ef351458b324e0850a46407492c8f08b,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40915
266,267,Resistors,Vishay,40919,MRS25000C8201F,MRS25000C8201FRP00,https://app.lcm-client.com/belimo/matching/40919/ef351458b324e0850a46407492c91498,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40919
267,268,Resistors,Vishay,40924,MBB02070C1002F,MBB02070C1002FRP00,https://app.lcm-client.com/belimo/matching/40924/ef351458b324e0850a46407492c95e69,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40924
268,269,Resistors,Vishay,40924,MRS25000C1002F,MRS25000C1002FRP00,https://app.lcm-client.com/belimo/matching/40924/ef351458b324e0850a46407492c9667f,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40924
269,270,Resistors,Vishay,41861-01003,MCS04020D1003B,MCS04020D1003BE500,https://app.lcm-client.com/belimo/matching/41861-01003/ef351458b324e0850a46407492ccbe77,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/41861-01003
270,271,Resistors,Vishay,47012-03830,MRS25000C3830F,MRS25000C3830FRP00,https://app.lcm-client.com/belimo/matching/47012-03830/ef351458b324e0850a46407492d6f482,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-03830
271,272,Resistors,Vishay,47012-04531,MRS25000C4531F,MRS25000C4531FRP00,https://app.lcm-client.com/belimo/matching/47012-04531/ef351458b324e0850a46407492d71357,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-04531
272,273,Resistors,Vishay,47012-06192,MBB02070C6192F,MBB02070C6192FRP00,https://app.lcm-client.com/belimo/matching/47012-06192/ef351458b324e0850a46407492d72930,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47012-06192
273,274,Resistors,Vishay,47012-06192,MRS25000C6192F,MRS25000C6192FRP00,https://app.lcm-client.com/belimo/matching/47012-06192/ef351458b324e0850a46407492d735ec,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-06192
274,275,Resistors,Vishay,47013,MBB02070C5600F,MBB02070C5600FRP00,https://app.lcm-client.com/belimo/matching/47013/ef351458b324e0850a46407492d77c2d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47013
275,276,Resistors,Vishay,47016,MBB02070C2102F,MBB02070C2102FRP00,https://app.lcm-client.com/belimo/matching/47016/ef351458b324e0850a46407492d79a35,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47016
276,277,Resistors,Vishay,47017,MBB02070C2802F,MBB02070C2802FRP00,https://app.lcm-client.com/belimo/matching/47017/ef351458b324e0850a46407492d7bc7e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47017
277,278,Resistors,Vishay,47030,MBB02070C1004F,MBB02070C1004FRP00,https://app.lcm-client.com/belimo/matching/47030/ef351458b324e0850a46407492d7ea45,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47030
278,279,Resistors,Vishay,47035,MBB02070C1802F,MBB02070C1802FRP00,https://app.lcm-client.com/belimo/matching/47035/ef351458b324e0850a46407492d82ea5,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47035
279,280,Resistors,Vishay,47355-01208,MRS25000C1208F,MRS25000C1208FRP00,https://app.lcm-client.com/belimo/matching/47355-01208/a57dd45b8b8bfbbc6b72118464fc8178,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01208
280,281,Resistors,Vishay,47355-01209,MBB02070C1209F,MBB02070C1209FRP00,https://app.lcm-client.com/belimo/matching/47355-01209/a57dd45b8b8bfbbc6b72118464fca02d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01209
281,282,Resistors,Vishay,47355-01209,MRS25000C1209F,MRS25000C1209FRP00,https://app.lcm-client.com/belimo/matching/47355-01209/a57dd45b8b8bfbbc6b72118464fcacd1,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01209
282,283,Resistors,Vishay,40617-01001,MMA02040C1001F,MMA02040C1001FB000,https://app.lcm-client.com/belimo/matching/40617-01001/c8cb570d5127ae96aaae8eee66425d73,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01001
283,284,Resistors,Vishay,40617-01001,SMM02040C1001F,SMM02040C1001FB000,https://app.lcm-client.com/belimo/matching/40617-01001/c8cb570d5127ae96aaae8eee664273bd,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01001
284,285,Resistors,Vishay,40617-04701,MMA02040C4701F,MMA02040C4701FB000,https://app.lcm-client.com/belimo/matching/40617-04701/c8cb570d5127ae96aaae8eee66480626,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04701
285,286,Resistors,Vishay,40617-04701,SMM02040C4701F,SMM02040C4701FB000,https://app.lcm-client.com/belimo/matching/40617-04701/c8cb570d5127ae96aaae8eee66480c80,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04701
286,287,Resistors,Vishay,40617-04708,MMA02040C4708F,MMA02040C4708FB000,https://app.lcm-client.com/belimo/matching/40617-04708/c8cb570d5127ae96aaae8eee66486f7f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04708
287,288,Resistors,Vishay,40617-04708,SMM02040C4708F,SMM02040C4708FB000,https://app.lcm-client.com/belimo/matching/40617-04708/c8cb570d5127ae96aaae8eee6648785d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04708
288,289,Resistors,Vishay,40617-04992,MMA02040C4992F,MMA02040C4992FB000,https://app.lcm-client.com/belimo/matching/40617-04992/c8cb570d5127ae96aaae8eee6648d911,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04992
289,290,Resistors,Vishay,40602-04701,MMB02070C4701F,MMB02070C4701FB700,https://app.lcm-client.com/belimo/matching/40602-04701/ef351458b324e0850a46407492a55a67,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04701
290,291,Resistors,Vishay,40602-09100,SMM02070C9100F,SMM02070C9100FBS00,https://app.lcm-client.com/belimo/matching/40602-09100/ef351458b324e0850a46407492a7a870,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-09100
291,292,Resistors,Vishay,40617-01002,MMA02040C1002F,MMA02040C1002FB000,https://app.lcm-client.com/belimo/matching/40617-01002/ef351458b324e0850a46407492b97ffb,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01002
292,293,Resistors,Vishay,40617-01002,SMM02040C1002F,SMM02040C1002FB000,https://app.lcm-client.com/belimo/matching/40617-01002/ef351458b324e0850a46407492b98f3c,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01002
293,294,Resistors,Vishay,40617-01003,MMA02040C1003F,MMA02040C1003FB000,https://app.lcm-client.com/belimo/matching/40617-01003/ef351458b324e0850a46407492b9d7bd,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01003
294,295,Resistors,Vishay,40617-01003,SMM02040C1003F,SMM02040C1003FB000,https://app.lcm-client.com/belimo/matching/40617-01003/ef351458b324e0850a46407492b9e217,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01003
295,296,Resistors,Vishay,40617-01008,MMA02040C1008F,MMA02040C1008FB000,https://app.lcm-client.com/belimo/matching/40617-01008/ef351458b324e0850a46407492ba4463,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01008
296,297,Resistors,Vishay,40617-01008,SMM02040C1008F,SMM02040C1008FB000,https://app.lcm-client.com/belimo/matching/40617-01008/ef351458b324e0850a46407492ba493f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01008
297,298,Resistors,Vishay,40617-01009,MMA02040C1009F,MMA02040C1009FB000,https://app.lcm-client.com/belimo/matching/40617-01009/ef351458b324e0850a46407492baaa84,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01009
298,299,Resistors,Vishay,40617-01009,SMM02040C1009F,SMM02040C1009FB000,https://app.lcm-client.com/belimo/matching/40617-01009/ef351458b324e0850a46407492bab791,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01009
299,300,Resistors,Vishay,40926,MBB02070C8202F,MBB02070C8202FRP00,https://app.lcm-client.com/belimo/matching/40926/ef351458b324e0850a46407492c97f9f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40926
300,301,Resistors,Vishay,41749-06800,CMB02070X6800G,CMB02070X6800GB700,https://app.lcm-client.com/belimo/matching/41749-06800/ef351458b324e0850a46407492cb3c37,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/41749-06800
301,302,Resistors,Vishay,41770-02401,CRCW12182K40FK,CRCW12182K40FKEK,https://app.lcm-client.com/belimo/matching/41770-02401/ef351458b324e0850a46407492cb4b4c,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41770-02401
302,303,Resistors,Vishay,41770-02401,RCL12182K40FK,RCL12182K40FKEK,https://app.lcm-client.com/belimo/matching/41770-02401/ef351458b324e0850a46407492cb5a01,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41770-02401
303,304,Resistors,Vishay,41770-02709,CRCW121827R0FK,CRCW121827R0FKEK,https://app.lcm-client.com/belimo/matching/41770-02709/ef351458b324e0850a46407492cb724c,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41770-02709
304,305,Resistors,Vishay,41770-02709,RCL121827R0FK,RCL121827R0FKEK,https://app.lcm-client.com/belimo/matching/41770-02709/ef351458b324e0850a46407492cb7c46,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41770-02709
305,306,Resistors,Vishay,41770-09100,CRCW1218910RFK,CRCW1218910RFKEK,https://app.lcm-client.com/belimo/matching/41770-09100/ef351458b324e0850a46407492cb859c,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41770-09100
306,307,Resistors,Vishay,41770-09100,RCL1218910RFK,RCL1218910RFKEK,https://app.lcm-client.com/belimo/matching/41770-09100/ef351458b324e0850a46407492cb8df7,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41770-09100
307,308,Resistors,Vishay,41807-08208,CRCW25128R20JN,CRCW25128R20JNEG,https://app.lcm-client.com/belimo/matching/41807-08208/ef351458b324e0850a46407492cc6d55,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41807-08208
308,309,Resistors,Vishay,41857-04700,CMA02040X4700G,CMA02040X4700GB300,https://app.lcm-client.com/belimo/matching/41857-04700/ef351458b324e0850a46407492cc8de1,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/41857-04700
309,310,Resistors,Vishay,40550,MBB0207IC1203F,MBB0207IC1203FRP00,https://app.lcm-client.com/belimo/matching/40550/ef351458b324e0850a464074929fa8a6,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40550
310,311,Resistors,Vishay,40550,MRS25000C1203F,MRS25000C1203FRP00,https://app.lcm-client.com/belimo/matching/40550/ef351458b324e0850a464074929faa94,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40550
311,312,Resistors,Vishay,40602-01001,MMB02070C1001F,MMB02070C1001FB700,https://app.lcm-client.com/belimo/matching/40602-01001/ef351458b324e0850a464074929fd84b,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01001
312,313,Resistors,Vishay,40602-01001,SMM02070C1001F,SMM02070C1001FBS00,https://app.lcm-client.com/belimo/matching/40602-01001/ef351458b324e0850a464074929fe654,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01001
313,314,Resistors,Vishay,40602-01002,MMB02070C1002F,MMB02070C1002FB700,https://app.lcm-client.com/belimo/matching/40602-01002/ef351458b324e0850a46407492a00ad0,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01002
314,315,Resistors,Vishay,40602-01002,SMM02070C1002F,SMM02070C1002FBS00,https://app.lcm-client.com/belimo/matching/40602-01002/ef351458b324e0850a46407492a00ede,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01002
315,316,Resistors,Vishay,40602-01004,MMB02070C1004F,MMB02070C1004FB700,https://app.lcm-client.com/belimo/matching/40602-01004/ef351458b324e0850a46407492a03473,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01004
316,317,Resistors,Vishay,40602-01004,SMM02070C1004F,SMM02070C1004FBS00,https://app.lcm-client.com/belimo/matching/40602-01004/ef351458b324e0850a46407492a03d9c,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01004
317,318,Resistors,Vishay,40861,MBB02070C2202F,MBB02070C2202FRP00,https://app.lcm-client.com/belimo/matching/40861/ef351458b324e0850a46407492c733f0,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40861
318,319,Resistors,Vishay,40861,MRS25000C2202F,MRS25000C2202FRP00,https://app.lcm-client.com/belimo/matching/40861/ef351458b324e0850a46407492c73735,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40861
319,320,Resistors,Vishay,47038,MBB02070C1103F,MBB02070C1103FRP00,https://app.lcm-client.com/belimo/matching/47038/ef351458b324e0850a46407492d84967,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47038
320,321,Resistors,Vishay,47355-05762,MRS25000C5762F,MRS25000C5762FRP00,https://app.lcm-client.com/belimo/matching/47355-05762/ef351458b324e0850a46407492dceb65,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-05762
321,322,Resistors,Vishay,47355-07503,MBB02070C7503F,MBB02070C7503FRP00,https://app.lcm-client.com/belimo/matching/47355-07503/ef351458b324e0850a46407492dd0a2c,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-07503
322,323,Resistors,Vishay,47355-07503,MRS25000C7503F,MRS25000C7503FRP00,https://app.lcm-client.com/belimo/matching/47355-07503/ef351458b324e0850a46407492dd1062,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-07503
323,324,Resistors,Vishay,47355-09102,MBB02070C9102F,MBB02070C9102FRP00,https://app.lcm-client.com/belimo/matching/47355-09102/ef351458b324e0850a46407492dd3bb8,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-09102
324,325,Resistors,Vishay,47355-09102,MRS25000C9102F,MRS25000C9102FRP00,https://app.lcm-client.com/belimo/matching/47355-09102/ef351458b324e0850a46407492dd4037,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-09102
325,326,Resistors,Vishay,47355-42200,MBB02070C2200F,MBB02070C2200FRP00,https://app.lcm-client.com/belimo/matching/47355-42200/ef351458b324e0850a46407492dd65ba,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-42200
326,327,Resistors,Vishay,47355-42200,MRS25000C2200F,MRS25000C2200FRP00,https://app.lcm-client.com/belimo/matching/47355-42200/ef351458b324e0850a46407492dd696b,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-42200
327,328,Resistors,Vishay,40617-02408,SMM02040C2408F,SMM02040C2408FB000,https://app.lcm-client.com/belimo/matching/40617-02408/ef351458b324e0850a46407492c0d2b0,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02408
328,329,Resistors,Vishay,40852,MBB02070C4702F,MBB02070C4702FRP00,https://app.lcm-client.com/belimo/matching/40852/ef351458b324e0850a46407492c6d60f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40852
329,330,Resistors,Vishay,40852,MRS25000C4702F,MRS25000C4702FRP00,https://app.lcm-client.com/belimo/matching/40852/ef351458b324e0850a46407492c6e1c7,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40852
330,331,Resistors,Vishay,40853,MBB02070C5902F,MBB02070C5902FRP00,https://app.lcm-client.com/belimo/matching/40853/ef351458b324e0850a46407492c703d9,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40853
331,332,Resistors,Vishay,40853,MRS25000C5902F,MRS25000C5902FRP00,https://app.lcm-client.com/belimo/matching/40853/ef351458b324e0850a46407492c70733,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40853
332,333,Resistors,Vishay,40860,MBB02070C3001F,MBB02070C3001FRP00,https://app.lcm-client.com/belimo/matching/40860/ef351458b324e0850a46407492c71d0c,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40860
333,334,Resistors,Vishay,40860,MRS25000C3001F,MRS25000C3001FRP00,https://app.lcm-client.com/belimo/matching/40860/ef351458b324e0850a46407492c72721,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40860
334,335,Resistors,Vishay,47355-44700,MRS25000C4700F,MRS25000C4700FRP00,https://app.lcm-client.com/belimo/matching/47355-44700/ef351458b324e0850a46407492dd925e,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-44700
335,336,Resistors,TT Electronics,40617-01204,WRM0204C1M2FI,WRM0204C-1M2FI,https://app.lcm-client.com/belimo/matching/40617-01204/a57dd45b8b8bfbbc6b72118464e1e61b,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01204
336,337,Resistors,TT Electronics,40617-01211,WRM0204C1K21FI,WRM0204C-470RFI,https://app.lcm-client.com/belimo/matching/40617-01211/a57dd45b8b8bfbbc6b72118464e2c13b,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01211
337,338,Resistors,TT Electronics,40617-01800,WRM0204C180RFI,WRM0204C180RFI,https://app.lcm-client.com/belimo/matching/40617-01800/a57dd45b8b8bfbbc6b72118464e475a3,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01800
338,339,Resistors,TT Electronics,40617-01801,WRM0204C1K8FI,WRM0204C-1K8FI,https://app.lcm-client.com/belimo/matching/40617-01801/a57dd45b8b8bfbbc6b72118464e4ef28,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01801
339,340,Resistors,TT Electronics,40617-03303,WRM0204C330KFI,WRM0204C-330KFI,https://app.lcm-client.com/belimo/matching/40617-03303/a57dd45b8b8bfbbc6b72118464e87aed,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03303
340,341,Resistors,TT Electronics,40617-04700,WRM0204C470RFI,WRM0204C-470RFI,https://app.lcm-client.com/belimo/matching/40617-04700/a57dd45b8b8bfbbc6b72118464ea09cb,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04700
341,342,Resistors,TT Electronics,40615-02002,PCF1206-R-20KB,PCF1206R-20KBT1 ,https://app.lcm-client.com/belimo/matching/40615-02002/c8cb570d5127ae96aaae8eee663f84a2,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02002
342,343,Resistors,TT Electronics,40615-02202,PCF1206-R-22KB,PCF1206R-22KBT1,https://app.lcm-client.com/belimo/matching/40615-02202/c8cb570d5127ae96aaae8eee663fadb4,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02202
343,344,Resistors,TT Electronics,40615-02372,PCF1206-R-56KB,PCF1206R-56KBT1,https://app.lcm-client.com/belimo/matching/40615-02202/c8cb570d5127ae96aaae8eee663fadb4,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02372
344,345,Resistors,TT Electronics,40615-02402,PCF1206-R-24KB,PCF1206R-24KBT1,https://app.lcm-client.com/belimo/matching/40615-02402/c8cb570d5127ae96aaae8eee664021c3,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02402
345,346,Resistors,TT Electronics,40615-02492,PCF1206-R-24K9B,PCF1206R-24K9BT1,https://app.lcm-client.com/belimo/matching/40615-02492/c8cb570d5127ae96aaae8eee66405af8,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02492
346,347,Resistors,TT Electronics,40615-02552,PCF1206-R-25K5B,PCF1206R-25K5BT1,https://app.lcm-client.com/belimo/matching/40615-02552/c8cb570d5127ae96aaae8eee664087ff,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02552
347,348,Resistors,TT Electronics,40615-02702,PCF1206-R-27KB,PCF1206R-27KBT1,https://app.lcm-client.com/belimo/matching/40615-02702/c8cb570d5127ae96aaae8eee6640c2eb,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02702
348,349,Resistors,TT Electronics,40615-03922,PCF1206-R-39K2B,PCF1206R-39K2BT1,https://app.lcm-client.com/belimo/matching/40615-03922/c8cb570d5127ae96aaae8eee6640ff82,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-03922
349,350,Resistors,TT Electronics,40615-06812,PCF1206-R-68K1B,PCF1206R-68K1BT1,https://app.lcm-client.com/belimo/matching/40615-06812/c8cb570d5127ae96aaae8eee6641618e,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-06812
350,351,Resistors,TT Electronics,40615-06982,PCF1206-R-69K8B,PCF1206R-69K8BT1,https://app.lcm-client.com/belimo/matching/40615-06982/c8cb570d5127ae96aaae8eee66419452,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-06982
351,352,Resistors,TT Electronics,40615-08201,PCF1206-R-8K2B,PCF1206R-8K2BT1,https://app.lcm-client.com/belimo/matching/40615-08201/c8cb570d5127ae96aaae8eee6641c3da,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-08201
352,353,Resistors,TT Electronics,40617-01001,WRM0204C1KFI,WRM0204C-1K0FI,https://app.lcm-client.com/belimo/matching/40617-01001/c8cb570d5127ae96aaae8eee66425552,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01001
353,354,Resistors,TT Electronics,40617-04701,WRM0204C4K7FI,WRM0204C-4K7FI,https://app.lcm-client.com/belimo/matching/40617-04701/c8cb570d5127ae96aaae8eee6647ff02,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04701
354,355,Resistors,TT Electronics,40617-04992,WRM0204C49K9FI,WRM0204C-49K9FI,https://app.lcm-client.com/belimo/matching/40617-04992/c8cb570d5127ae96aaae8eee6648bd7f,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04992
355,356,Resistors,TT Electronics,40617-05109,WRM0204C51RFI,WRM0204C-51RFI,https://app.lcm-client.com/belimo/matching/40617-05109/c8cb570d5127ae96aaae8eee664944ae,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-05109
356,357,Resistors,TT Electronics,40617-05601,WRM0204C5K6FI,WRM0204C-5K6FI,https://app.lcm-client.com/belimo/matching/40617-05601/c8cb570d5127ae96aaae8eee6649b46b,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-05601
357,358,Resistors,TT Electronics,40617-06800,WRM0204C680RFI,WRM0204C-680RFI,https://app.lcm-client.com/belimo/matching/40617-06800/c8cb570d5127ae96aaae8eee664a97c6,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06800
358,359,Resistors,TT Electronics,40617-06801,WRM0204C6K8FI,WRM0204C-6K8FI,https://app.lcm-client.com/belimo/matching/40617-06801/c8cb570d5127ae96aaae8eee664b8a2f,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06801
359,360,Resistors,TT Electronics,40617-07502,WRM0204C75KFI,WRM0204C-75KFI,https://app.lcm-client.com/belimo/matching/40617-07502/c8cb570d5127ae96aaae8eee664c65a4,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-07502
360,361,Resistors,TT Electronics,40602-01001,WRM0207HPC-1K0F,WRM0207HPC-1K0FT2,https://app.lcm-client.com/belimo/matching/40602-01001/ef351458b324e0850a464074929fc757,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01001
361,362,Resistors,TT Electronics,40602-01002,WRM0207HPC-10KF,WRM0207HPC-10KFT2,https://app.lcm-client.com/belimo/matching/40602-01002/ef351458b324e0850a46407492a0014a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01002
362,363,Resistors,TT Electronics,40602-01004,WRM0207HPC-1M0F,WRM0207HPC-1M0FT2,https://app.lcm-client.com/belimo/matching/40602-01004/ef351458b324e0850a46407492a0258e,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01004
363,364,Resistors,TT Electronics,40602-01100,WRM0207HPC-110RF,WRM0207HPC-110RFT2,https://app.lcm-client.com/belimo/matching/40602-01100/ef351458b324e0850a46407492a0d9d9,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01100
364,365,Resistors,TT Electronics,40602-01501,WRM0207HPC-1K5F,WRM0207HPC-1K5FT2,https://app.lcm-client.com/belimo/matching/40602-01501/ef351458b324e0850a46407492a118c9,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01501
365,366,Resistors,TT Electronics,40602-01503,WRM0207HPC-150KF,WRM0207HPC-150KFT2,https://app.lcm-client.com/belimo/matching/40602-01503/ef351458b324e0850a46407492a15498,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01503
366,367,Resistors,TT Electronics,40602-01801,WRM0207HPC-1K8F,WRM0207HPC-1K8FT2,https://app.lcm-client.com/belimo/matching/40602-01801/ef351458b324e0850a46407492a19513,ok,Automotive,Yes,y,Requires Update,https://app.lcm-client.com/belimo/part/40602-01801
367,368,Resistors,TT Electronics,40602-02201,WRM0207HPC-2K2F,WRM0207HPC-2K2FT2,https://app.lcm-client.com/belimo/matching/40602-02201/ef351458b324e0850a46407492a1c7a2,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02201
368,369,Resistors,TT Electronics,40602-02203,WRM0207HPC-220KF,WRM0207HPC-220KFT2,https://app.lcm-client.com/belimo/matching/40602-02203/ef351458b324e0850a46407492a208f7,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02203
369,370,Resistors,TT Electronics,40602-02401,WRM0207HPC-2K4F,WRM0207HPC-2K4FT2,https://app.lcm-client.com/belimo/matching/40602-02401/ef351458b324e0850a46407492a27710,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02401
370,371,Resistors,TT Electronics,40602-02402,WRM0207HPC-24KF,WRM0207HPC-24KFT2,https://app.lcm-client.com/belimo/matching/40602-02402/ef351458b324e0850a46407492a2b96e,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02402
371,372,Resistors,TT Electronics,40602-02403,WRM0207HPC-240KF,WRM0207HPC-240KFT2,https://app.lcm-client.com/belimo/matching/40602-02403/ef351458b324e0850a46407492a2ea6d,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02403
372,373,Resistors,TT Electronics,40602-02491,WRM0207HPC-2K49F,WRM0207HPC-2K49FT2,https://app.lcm-client.com/belimo/matching/40602-02491/ef351458b324e0850a46407492a30f58,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02491
373,374,Resistors,TT Electronics,40602-02703,WRM0207HPC-270KF,WRM0207HPC-270KFT2,https://app.lcm-client.com/belimo/matching/40602-02703/ef351458b324e0850a46407492a35ee4,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02703
374,375,Resistors,TT Electronics,40602-03000,WRM0207HPC-300RF,WRM0207HPC-300RFT2,https://app.lcm-client.com/belimo/matching/40602-03000/ef351458b324e0850a46407492a39ce1,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-03000
375,376,Resistors,TT Electronics,40602-03303,WRM0207HPC-330KF,WRM0207HPC-330KFT2,https://app.lcm-client.com/belimo/matching/40602-03303/ef351458b324e0850a46407492a3cdcf,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-03303
376,377,Resistors,TT Electronics,40602-04700,WRM0207HPC-470RF,WRM0207HPC-470RFT2,https://app.lcm-client.com/belimo/matching/40602-04700/ef351458b324e0850a46407492a51cfd,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04700
377,378,Resistors,TT Electronics,40602-04701,WRM0207HPC-4K7F,WRM0207HPC-4K7FT2,https://app.lcm-client.com/belimo/matching/40602-04701/ef351458b324e0850a46407492a54e73,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04701
378,379,Resistors,TT Electronics,40602-04702,WRM0207HPC-47KF,WRM0207HPC-47KFT2,https://app.lcm-client.com/belimo/matching/40602-04702/ef351458b324e0850a46407492a58a5c,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04702
379,380,Resistors,TT Electronics,40602-04703,WRM0207HPC-470KF,WRM0207HPC-470KFT2,https://app.lcm-client.com/belimo/matching/40602-04703/ef351458b324e0850a46407492a5b923,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04703
380,381,Resistors,TT Electronics,40602-05100,WRM0207HPC-510RF,WRM0207HPC-510RFT2,https://app.lcm-client.com/belimo/matching/40602-05100/ef351458b324e0850a46407492a6084d,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05100
381,382,Resistors,TT Electronics,40602-05603,WRM0207HPC-560KF,WRM0207HPC-560KFT2,https://app.lcm-client.com/belimo/matching/40602-05603/ef351458b324e0850a46407492a64c72,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05603
382,383,Resistors,TT Electronics,40602-06209,WRM0207HPC-62RF,WRM0207HPC-62RFT2,https://app.lcm-client.com/belimo/matching/40602-06209/ef351458b324e0850a46407492a68b65,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-06209
383,384,Resistors,TT Electronics,40602-07502,WRM0207HPC-75KF,WRM0207HPC-75KFT2,https://app.lcm-client.com/belimo/matching/40602-07502/ef351458b324e0850a46407492a6d6ab,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-07502
384,385,Resistors,TT Electronics,40602-08063,WRM0207HPC-806KF,WRM0207HPC-806KFT2,https://app.lcm-client.com/belimo/matching/40602-08063/ef351458b324e0850a46407492a71c92,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08063
385,386,Resistors,TT Electronics,40602-08202,WRM0207HPC-82KF,WRM0207HPC-82KFT2,https://app.lcm-client.com/belimo/matching/40602-08202/ef351458b324e0850a46407492a75ccf,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08202
386,387,Resistors,TT Electronics,40602-09100,WRM0207HPC-910RF,WRM0207HPC-910RFT2,https://app.lcm-client.com/belimo/matching/40602-09100/ef351458b324e0850a46407492a79fec,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-09100
387,388,Resistors,TT Electronics,40615-01002,PCF1206-R-10KB,PCF1206R-10KBT1,https://app.lcm-client.com/belimo/matching/40615-01002/ef351458b324e0850a46407492b6a626,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-01002
388,389,Resistors,TT Electronics,40615-01022,PCF1206-R-10K2B,PCF1206R-10K2BT1,https://app.lcm-client.com/belimo/matching/40615-01022/ef351458b324e0850a46407492b6e25d,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-01022
389,390,Resistors,TT Electronics,40615-01213,PCF1206-R-121KB,PCF1206R-121KBT1,https://app.lcm-client.com/belimo/matching/40615-01213/ef351458b324e0850a46407492b72657,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-01213
390,391,Resistors,TT Electronics,40615-01822,PCF1206-R-18K2B,PCF1206R-18K2BT1,https://app.lcm-client.com/belimo/matching/40615-01822/ef351458b324e0850a46407492b751d0,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-01822
391,392,Resistors,TT Electronics,40617-01002,WRM0204C10KFI,WRM0204C-10KFI,https://app.lcm-client.com/belimo/matching/40617-01002/ef351458b324e0850a46407492b965cd,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01002
392,393,Resistors,TT Electronics,40617-01003,WRM0204C100KFI,WRM0204C-100KFI,https://app.lcm-client.com/belimo/matching/40617-01003/ef351458b324e0850a46407492b9d08e,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01003
393,394,Resistors,TT Electronics,40617-01108,WRM0204C1R1FI,WRM0204C-1R1FI,https://app.lcm-client.com/belimo/matching/40617-01108/ef351458b324e0850a46407492bb284b,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01108
394,395,Resistors,TT Electronics,40617-01201,WRM0204C1K2FI,WRM0204C-1K2FI,https://app.lcm-client.com/belimo/matching/40617-01201/ef351458b324e0850a46407492bb9190,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01201
395,396,Resistors,TT Electronics,40617-01202,WRM0204C12KFI,WRM0204C-12KFI,https://app.lcm-client.com/belimo/matching/40617-01202/ef351458b324e0850a46407492bbe280,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01202
396,397,Resistors,TT Electronics,40617-02002,WRM0204C20KFI,WRM0204C-20KFI,https://app.lcm-client.com/belimo/matching/40617-02002/ef351458b324e0850a46407492beb216,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02002
397,398,Resistors,TT Electronics,40617-02201,WRM0204C2K2FI,WRM0204C-2K2FI,https://app.lcm-client.com/belimo/matching/40617-02201/ef351458b324e0850a46407492bf96d3,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02201
398,399,Resistors,TT Electronics,40617-02202,WRM0204C22KFI,WRM0204C-22KFI,https://app.lcm-client.com/belimo/matching/40617-02202/ef351458b324e0850a46407492c0070f,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02202
399,400,Resistors,TT Electronics,40617-02402,WRM0204C24KFI,WRM0204C-24KFI,https://app.lcm-client.com/belimo/matching/40617-02402/ef351458b324e0850a46407492c077bb,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02402
400,401,Resistors,TT Electronics,41746-02007,LR2512-R20F,LR2512-R20FT1,https://app.lcm-client.com/belimo/matching/41746-02007/ef351458b324e0850a46407492cb1266,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41746-02007
401,402,Resistors,TT Electronics,41801-00057,LRMAP2512-R005F,LRMAP2512-R005FT4,https://app.lcm-client.com/belimo/matching/41801-00057/ef351458b324e0850a46407492cc617c,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/41801-00057
402,403,Resistors,TT Electronics,41808-01008,CHP1/8501R00J,CHP1/8501R00JLF,https://app.lcm-client.com/belimo/matching/41808-01008/ef351458b324e0850a46407492cc74b7,ok,STD,Yes,y,Obsolete,https://app.lcm-client.com/belimo/part/41808-01008
403,404,Resistors,Panasonic,41911-03001,ERJ2RKF3001,ERJ2RKF3001X,https://app.lcm-client.com/belimo/matching/41911-03001/01c0aaf7f54e36ff3a021a81ca303251,ok,Automotive,Exption,n,,
404,405,Resistors,Panasonic,41911-03301,ERJ2RKF3301,ERJ2RKF3301X,https://app.lcm-client.com/belimo/matching/41911-03301/01c0aaf7f54e36ff3a021a81ca30648f,ok,Automotive,Exption,n,,
405,406,Resistors,Panasonic,41911-05600,ERJ2RKF5600,ERJ2RKF5600X,https://app.lcm-client.com/belimo/matching/41911-05600/215374c1de05d3324b68f967dc5023c8,ok,Automotive,Exption,n,,
406,407,Resistors,Panasonic,41911-07502,ERJ2RKF7502,ERJ2RKF7502X,https://app.lcm-client.com/belimo/matching/41911-07502/215374c1de05d3324b68f967dc50b5a8,ok,Automotive,Exption,n,,
407,408,Resistors,Panasonic,41911-08203,ERJ2RKF8203,ERJ2RKF8203X,https://app.lcm-client.com/belimo/matching/41911-08203/215374c1de05d3324b68f967dc50e5fb,ok,Automotive,Exption,n,,
408,409,Resistors,Panasonic,41911-01103,ERJ2RKF1103,ERJ2RKF1103X,https://app.lcm-client.com/belimo/matching/41911-01103/46de94ed90f9f5ccd2b17e508cfa275c,ok,Automotive,Exption,n,,
409,410,Resistors,Panasonic,41911-01200,ERJ2RKF1200,ERJ2RKF1200X,https://app.lcm-client.com/belimo/matching/41911-01200/46de94ed90f9f5ccd2b17e508cfa4588,ok,Automotive,Exption,n,,
410,411,Resistors,Panasonic,41911-01302,ERJ2RKF1302,ERJ2RKF1302X,https://app.lcm-client.com/belimo/matching/41911-01302/46de94ed90f9f5ccd2b17e508cfa5fef,ok,Automotive,Exption,n,,
411,412,Resistors,Panasonic,41911-01303,ERJ2RKF1303,ERJ2RKF1303X,https://app.lcm-client.com/belimo/matching/41911-01303/46de94ed90f9f5ccd2b17e508cfa88df,ok,Automotive,Exption,n,,
412,413,Resistors,Panasonic,40613-01001,ERA6AEB102,ERA6AEB102V,https://app.lcm-client.com/belimo/matching/40613-01001/a57dd45b8b8bfbbc6b72118464d72071,ok,Automotive,Exption,n,,
413,414,Resistors,Panasonic,40613-01002,ERA6AEB103,ERA6AEB103V,https://app.lcm-client.com/belimo/matching/40613-01002/a57dd45b8b8bfbbc6b72118464d74c0c,ok,Automotive,Exption,n,,
414,415,Resistors,Panasonic,40613-01152,ERA6AEB1153,ERA6AEB1153V,https://app.lcm-client.com/belimo/matching/40613-01152/a57dd45b8b8bfbbc6b72118464d773c4,ok,Automotive,Exption,n,,
415,416,Resistors,Panasonic,40613-01271,ERA6AEB1271,ERA6AEB1271V,https://app.lcm-client.com/belimo/matching/40613-01271/a57dd45b8b8bfbbc6b72118464d7a262,ok,Automotive,Exption,n,,
416,417,Resistors,Panasonic,40613-01502,ERA6AEB1502,ERA6AEB1502V,https://app.lcm-client.com/belimo/matching/40613-01502/a57dd45b8b8bfbbc6b72118464d7ef05,ok,Automotive,Exption,n,,
417,418,Resistors,Panasonic,40613-01503,ERA6AEB1503,ERA6AEB1503V,https://app.lcm-client.com/belimo/matching/40613-01503/a57dd45b8b8bfbbc6b72118464d802b3,ok,Automotive,Exption,n,,
418,419,Resistors,Panasonic,40613-01602,ERA6AEB163,ERA6AEB163V,https://app.lcm-client.com/belimo/matching/40613-01602/a57dd45b8b8bfbbc6b72118464d8202c,ok,Automotive,Exption,n,,
419,420,Resistors,Panasonic,40613-02001,ERA6AEB2001,ERA6AEB2001V,https://app.lcm-client.com/belimo/matching/40613-02001/a57dd45b8b8bfbbc6b72118464d85572,ok,Automotive,Exption,n,,
420,421,Resistors,Panasonic,40613-02002,ERA6AEB2002,ERA6AEB2002V,https://app.lcm-client.com/belimo/matching/40613-02002/a57dd45b8b8bfbbc6b72118464d8777d,ok,Automotive,Exption,n,,
421,422,Resistors,Panasonic,40613-02432,ERA6AEB2431,ERA6AEB2431V,https://app.lcm-client.com/belimo/matching/40613-02432/a57dd45b8b8bfbbc6b72118464d8af94,ok,Automotive,Exption,n,,
422,423,Resistors,Panasonic,40613-03321,ERA6AEB3321,ERA6AEB3321V,https://app.lcm-client.com/belimo/matching/40613-03321/a57dd45b8b8bfbbc6b72118464d8e08b,ok,Automotive,Exption,n,,
423,424,Resistors,Panasonic,40613-03601,ERA6AEB362,ERA6AEB362V,https://app.lcm-client.com/belimo/matching/40613-03601/a57dd45b8b8bfbbc6b72118464d8fefd,ok,Automotive,Exption,n,,
424,425,Resistors,Panasonic,40613-04022,ERA6AEB4022,ERA6AEB4022V,https://app.lcm-client.com/belimo/matching/40613-04022/a57dd45b8b8bfbbc6b72118464da2fbb,ok,Automotive,Exption,n,,
425,426,Resistors,Panasonic,40613-06802,ERA6AEB683,ERA6AEB683V,https://app.lcm-client.com/belimo/matching/40613-06802/a57dd45b8b8bfbbc6b72118464da4c84,ok,Automotive,Exption,n,,
426,427,Resistors,Panasonic,40613-07871,ERA6AEB7871,ERA6AEB7871V,https://app.lcm-client.com/belimo/matching/40613-07871/a57dd45b8b8bfbbc6b72118464da5af6,ok,Automotive,Exption,n,,
427,428,Resistors,Panasonic,40613-09762,ERA6AEB9762,ERA6AEB9762V,https://app.lcm-client.com/belimo/matching/40613-09762/a57dd45b8b8bfbbc6b72118464da891e,ok,Automotive,Exption,n,,
428,429,Resistors,Panasonic,41911-01003,ERJ2RKF1003,ERJ2RKF1003X,https://app.lcm-client.com/belimo/matching/41911-01003/a57dd45b8b8bfbbc6b72118464f07eb4,ok,Automotive,Exption,n,,
429,430,Resistors,Panasonic,41911-01102,ERJ2RKF1102,ERJ2RKF1102X,https://app.lcm-client.com/belimo/matching/41911-01102/a57dd45b8b8bfbbc6b72118464f0d155,ok,Automotive,Exption,n,,
430,431,Resistors,Panasonic,41911-01202,ERJ2RKF1202,ERJ2RKF1202X,https://app.lcm-client.com/belimo/matching/41911-01202/a57dd45b8b8bfbbc6b72118464f1003f,ok,Automotive,Exption,n,,
431,432,Resistors,Panasonic,41911-01203,ERJ2RKF1203,ERJ2RKF1203X,https://app.lcm-client.com/belimo/matching/41911-01203/a57dd45b8b8bfbbc6b72118464f11b46,ok,Automotive,Exption,n,,
432,433,Resistors,Panasonic,41911-01402,ERJ2RKF1402,ERJ2RKF1402X,https://app.lcm-client.com/belimo/matching/41911-01402/a57dd45b8b8bfbbc6b72118464f1429e,ok,Automotive,Exption,n,,
433,434,Resistors,Panasonic,41911-01502,ERJ2RKF1502,ERJ2RKF1502X,https://app.lcm-client.com/belimo/matching/41911-01502/a57dd45b8b8bfbbc6b72118464f179f5,ok,Automotive,Exption,n,,
434,435,Resistors,Panasonic,41911-01503,ERJ2RKF1503,ERJ2RKF1503X,https://app.lcm-client.com/belimo/matching/41911-01503/a57dd45b8b8bfbbc6b72118464f1b159,ok,Automotive,Exption,n,,
435,436,Resistors,Panasonic,41911-01802,ERJ2RKF1802,ERJ2RKF1802X,https://app.lcm-client.com/belimo/matching/41911-01802/a57dd45b8b8bfbbc6b72118464f1e1f1,ok,Automotive,Exption,n,,
436,437,Resistors,Panasonic,41911-01803,ERJ2RKF1803,ERJ2RKF1803X,https://app.lcm-client.com/belimo/matching/41911-01803/a57dd45b8b8bfbbc6b72118464f210cd,ok,Automotive,Exption,n,,
437,438,Resistors,Panasonic,41911-02003,ERJ2RKF2003,ERJ2RKF2003X,https://app.lcm-client.com/belimo/matching/41911-02003/a57dd45b8b8bfbbc6b72118464f2425a,ok,Automotive,Exption,n,,
438,439,Resistors,Panasonic,41911-02200,ERJ2RKF2200,ERJ2RKF2200X,https://app.lcm-client.com/belimo/matching/41911-02200/a57dd45b8b8bfbbc6b72118464f2631d,ok,Automotive,Exption,n,,
439,440,Resistors,Panasonic,41911-02201,ERJ2RKF2201,ERJ2RKF2201X,https://app.lcm-client.com/belimo/matching/41911-02201/a57dd45b8b8bfbbc6b72118464f28fbc,ok,Automotive,Exption,n,,
440,441,Resistors,Panasonic,41911-02202,ERJ2RKF2202,ERJ2RKF2202X,https://app.lcm-client.com/belimo/matching/41911-02202/a57dd45b8b8bfbbc6b72118464f2ad6b,ok,Automotive,Exption,n,,
441,442,Resistors,Panasonic,41911-02203,ERJ2RKF2203,ERJ2RKF2203X,https://app.lcm-client.com/belimo/matching/41911-02203/a57dd45b8b8bfbbc6b72118464f2d9da,ok,Automotive,Exption,n,,
442,443,Resistors,Panasonic,47690-00001,ERJ-6ENF1003V,ERJ6ENF1003V,https://app.lcm-client.com/belimo/matching/47690-00001/a57dd45b8b8bfbbc6b72118464fe67b5,ok,Automotive,Exption,n,,
443,444,Resistors,Panasonic,47692-00001,ERJ-6ENF1783V,ERJ6ENF1783V,https://app.lcm-client.com/belimo/matching/47692-00001/a57dd45b8b8bfbbc6b72118464fe776d,ok,Automotive,Exption,n,,
444,445,Resistors,Panasonic,47694-00001,ERJ-6ENF4753V,ERJ6ENF4753V,https://app.lcm-client.com/belimo/matching/47694-00001/a57dd45b8b8bfbbc6b72118464fe8343,ok,Automotive,Exption,n,,
445,446,Resistors,Panasonic,47695-00001,ERJ-6ENF6493V,ERJ6ENF6493V,https://app.lcm-client.com/belimo/matching/47695-00001/a57dd45b8b8bfbbc6b72118464fe92ca,ok,Automotive,Exption,n,,
446,447,Resistors,Panasonic,47700-00001,ERJ-6ENF1000V,ERJ6ENF1000V,https://app.lcm-client.com/belimo/matching/47700-00001/a57dd45b8b8bfbbc6b72118464fee6c1,ok,Automotive,Exption,n,,
447,448,Resistors,Panasonic,47703-00001,ERJ-6ENF9090V,ERJ6ENF9090V,https://app.lcm-client.com/belimo/matching/47703-00001/a57dd45b8b8bfbbc6b72118464ff302b,ok,Automotive,Exption,n,,
448,449,Resistors,Panasonic,47704-00001,ERJ-8ENF1001V,ERJ8ENF1001V,https://app.lcm-client.com/belimo/matching/47704-00001/a57dd45b8b8bfbbc6b72118464ff3d4c,ok,Automotive,Exption,y,NRND,
449,450,Resistors,Panasonic,47716-00001,ERJ-8ENF62R0V,ERJ8ENF62R0V,https://app.lcm-client.com/belimo/matching/47716-00001/a57dd45b8b8bfbbc6b72118464ffbddb,ok,Automotive,Exption,y,NRND,
450,451,Resistors,Panasonic,47720-00001,ERJ-8ENF4990V,ERJ8ENF4990V,https://app.lcm-client.com/belimo/matching/47720-00001/a57dd45b8b8bfbbc6b72118464ffd9f2,ok,Automotive,Exption,y,NRND,
451,452,Resistors,Panasonic,41911-02400,ERJ2RKF2400,ERJ2RKF2400x,https://app.lcm-client.com/belimo/matching/41911-02400/c8cb570d5127ae96aaae8eee6653b5ee,ok,Automotive,Exption,n,,
452,453,Resistors,Panasonic,41911-02402,ERJ2RKF2402,ERJ2RKF2402X,https://app.lcm-client.com/belimo/matching/41911-02402/c8cb570d5127ae96aaae8eee6653e56f,ok,Automotive,Exption,n,,
453,454,Resistors,Panasonic,41911-02701,ERJ2RKF2701,ERJ2RKF2701X,https://app.lcm-client.com/belimo/matching/41911-02701/c8cb570d5127ae96aaae8eee66541a81,ok,Automotive,Exption,n,,
454,455,Resistors,Panasonic,41911-02702,ERJ2RKF2702,ERJ2RKF2702X,https://app.lcm-client.com/belimo/matching/41911-02702/c8cb570d5127ae96aaae8eee66543ebe,ok,Automotive,Exption,n,,
455,456,Resistors,Panasonic,41911-03002,ERJ2RKF3002,ERJ2RKF3002X,https://app.lcm-client.com/belimo/matching/41911-03002/c8cb570d5127ae96aaae8eee6654c2de,ok,Automotive,Exption,n,,
456,457,Resistors,Panasonic,41911-03003,ERJ2RKF3003,ERJ2RKF3003X,https://app.lcm-client.com/belimo/matching/41911-03003/c8cb570d5127ae96aaae8eee6655059a,ok,Automotive,Exption,n,,
457,458,Resistors,Panasonic,41911-03300,ERJ2RKF3300,ERJ2RKF3300X,https://app.lcm-client.com/belimo/matching/41911-03300/c8cb570d5127ae96aaae8eee66553a8c,ok,Automotive,Exption,n,,
458,459,Resistors,Panasonic,41911-03302,ERJ2RKF3302,ERJ2RKF3302X,https://app.lcm-client.com/belimo/matching/41911-03302/c8cb570d5127ae96aaae8eee66555ae8,ok,Automotive,Exption,n,,
459,460,Resistors,Panasonic,41911-03303,ERJ2RKF3303,ERJ2RKF3303X,https://app.lcm-client.com/belimo/matching/41911-03303/c8cb570d5127ae96aaae8eee665598e9,ok,Automotive,Exption,n,,
460,461,Resistors,Panasonic,41911-03900,ERJ2RKF3900,ERJ2RKF3900X,https://app.lcm-client.com/belimo/matching/41911-03900/c8cb570d5127ae96aaae8eee6655be39,ok,Automotive,Exption,n,,
461,462,Resistors,Panasonic,41911-04302,ERJ2RKF4302,ERJ2RKF4302X,https://app.lcm-client.com/belimo/matching/41911-04302/c8cb570d5127ae96aaae8eee66560497,ok,Automotive,Exption,n,,
462,463,Resistors,Panasonic,41911-04701,ERJ2RKF4703,ERJ2RKF4703X,https://app.lcm-client.com/belimo/matching/41911-04701/c8cb570d5127ae96aaae8eee66567b38,ok,Automotive,Exption,n,,
463,464,Resistors,Panasonic,41911-08872,ERJ2RKF8872,ERJ2RKF8872X,https://app.lcm-client.com/belimo/matching/41911-08872/c8cb570d5127ae96aaae8eee6658f0ba,ok,Automotive,Exption,n,,
464,465,Resistors,Panasonic,42175-03602,ERJ2RKF3602,ERJ2RKF3602X,https://app.lcm-client.com/belimo/matching/42175-03602/c8cb570d5127ae96aaae8eee6659b0b1,ok,Automotive,Exption,n,,
465,466,Resistors,Panasonic,42175-08201,ERJ2RKF8201,ERJ2RKF8201X,https://app.lcm-client.com/belimo/matching/42175-08201/c8cb570d5127ae96aaae8eee6659c7f1,ok,Automotive,Exption,n,,
466,467,Resistors,Panasonic,40412-02701,ERJ-U03D2701V,ERJU03D2701V,https://app.lcm-client.com/belimo/matching/40412-02701/ef351458b324e0850a464074929e2bee,ok,Automotive,Exption,n,,
467,468,Resistors,Panasonic,40412-02701,ERJ-U3RD2701V,ERJU3RD2701V,https://app.lcm-client.com/belimo/matching/40412-02701/ef351458b324e0850a464074929e3613,ok,Automotive,Exption,n,,
468,469,Resistors,Panasonic,41861-01003,ERA2AEB104,ERA2AEB104X,https://app.lcm-client.com/belimo/matching/41861-01003/ef351458b324e0850a46407492ccb156,ok,Automotive,Exption,n,,
469,470,Resistors,Panasonic,41861-02001,ERA2AEB202,ERA2AEB202X,https://app.lcm-client.com/belimo/matching/41861-02001/ef351458b324e0850a46407492ccefa4,ok,Automotive,Exption,n,,
470,471,Resistors,Panasonic,41861-02702,ERA2AEB273,ERA2AEB273X,https://app.lcm-client.com/belimo/matching/41861-02702/ef351458b324e0850a46407492cd4c96,ok,Automotive,Exption,n,,
471,472,Resistors,Panasonic,41861-04702,ERJ2RKF4702,ERJ2RKF4702X,https://app.lcm-client.com/belimo/matching/41861-04702/ef351458b324e0850a46407492cd780d,ok,Automotive,Exption,n,,
472,473,Resistors,Panasonic,41861-06802,ERA2AEB683,ERA2AEB683X,https://app.lcm-client.com/belimo/matching/41861-06802/ef351458b324e0850a46407492cd95c0,ok,Automotive,Exption,n,,
473,474,Resistors,Panasonic,41911-01001,ERJ2RKF1001,ERJ2RKF1001X,https://app.lcm-client.com/belimo/matching/41911-01001/ef351458b324e0850a46407492ced498,ok,Automotive,Exption,n,,
474,475,Resistors,Panasonic,41911-05102,ERJ2RKF5102,ERJ2RKF5102X,https://app.lcm-client.com/belimo/matching/41911-05102/ef351458b324e0850a46407492d19988,ok,Automotive,Exption,n,,
475,476,Resistors,Panasonic,41911-05103,ERJ2RKF5103,ERJ2RKF5103X,https://app.lcm-client.com/belimo/matching/41911-05103/ef351458b324e0850a46407492d1cc89,ok,Automotive,Exption,n,,
476,477,Resistors,Panasonic,41911-05603,ERJ2RKF5603,ERJ2RKF5603X,https://app.lcm-client.com/belimo/matching/41911-05603/ef351458b324e0850a46407492d223fb,ok,Automotive,Exption,n,,
477,478,Resistors,Panasonic,41911-06201,ERJ2RKF6201,ERJ2RKF6201X,https://app.lcm-client.com/belimo/matching/41911-06201/ef351458b324e0850a46407492d2c3d1,ok,Automotive,Exption,n,,
478,479,Resistors,Panasonic,41911-06202,ERJ2RKF6202,ERJ2RKF6202X,https://app.lcm-client.com/belimo/matching/41911-06202/ef351458b324e0850a46407492d2fe25,ok,Automotive,Exption,n,,
479,480,Resistors,Panasonic,41911-06802,ERJ2RKF6802,ERJ2RKF6802X,https://app.lcm-client.com/belimo/matching/41911-06802/ef351458b324e0850a46407492d330e8,ok,Automotive,Exption,n,,
480,481,Resistors,Panasonic,41911-06803,ERJ2RKF6803,ERJ2RKF6803X,https://app.lcm-client.com/belimo/matching/41911-06803/ef351458b324e0850a46407492d3643a,ok,Automotive,Exption,n,,
481,482,Resistors,Panasonic,41911-06809,ERJ2RKF68R0,ERJ2RKF68R0X,https://app.lcm-client.com/belimo/matching/41911-06809/ef351458b324e0850a46407492d3ab42,ok,Automotive,Exption,n,,
482,483,Resistors,Panasonic,47673-00001,ERJ-6ENF1151V,ERJ6ENF1151V,https://app.lcm-client.com/belimo/matching/47673-00001/ef351458b324e0850a46407492de2ab2,ok,Automotive,Exption,n,,
483,484,Resistors,Panasonic,47678-00001,ERJ-6ENF4301V,ERJ6ENF4301V,https://app.lcm-client.com/belimo/matching/47678-00001/ef351458b324e0850a46407492de700b,ok,Automotive,Exption,n,,
484,485,Resistors,Panasonic,47682-00001,ERJ-6ENF1912V,ERJ6ENF1912V,https://app.lcm-client.com/belimo/matching/47682-00001/ef351458b324e0850a46407492decfd2,ok,Automotive,Exption,n,,
485,486,Resistors,TDK,40138,B57620C5102J,B57620C5102J062,https://app.lcm-client.com/belimo/matching/40138/ef351458b324e0850a464074929dd12c,ok,STD,Yes,y,Requires Update,https://app.lcm-client.com/belimo/part/40138

@ -0,0 +1,487 @@
,Pos,Category,Manufacturer,CPN,MPN,MPN_Matched,Link,Status,State,ROHS,report_belimo,Comment,CPN_Link
0,1,Resistors,Vishay,41749-01509,CMB02070X1509,CMB02070X1509JB200 ,https://app.lcm-client.com/belimo/matching/41749-01509/46de94ed90f9f5ccd2b17e508cf7765a,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/41749-01509
1,2,Resistors,Vishay,40613-01001,MCU08050D1001B,MCU08050D1001BP500,https://app.lcm-client.com/belimo/matching/40613-01001/a57dd45b8b8bfbbc6b72118464d732a4,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01001
2,3,Resistors,Vishay,40613-01002,MCU08050D1002B,MCU08050D1002BP500,https://app.lcm-client.com/belimo/matching/40613-01002/a57dd45b8b8bfbbc6b72118464d75801,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01002
3,4,Resistors,Vishay,40613-01152,MCU08050D1152B,MCU08050D1152BP500,https://app.lcm-client.com/belimo/matching/40613-01152/a57dd45b8b8bfbbc6b72118464d7859d,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01152
4,5,Resistors,Vishay,40613-01271,MCU08050D1271B,MCU08050D1271BP500,https://app.lcm-client.com/belimo/matching/40613-01271/a57dd45b8b8bfbbc6b72118464d7c5d9,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01271
5,6,Resistors,Vishay,40613-01300,MCU08050D1300B,MCU08050D1300BP500,https://app.lcm-client.com/belimo/matching/40613-01300/a57dd45b8b8bfbbc6b72118464d7dde1,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01300
6,7,Resistors,Vishay,40613-01502,MCU08050D1502B,MCU08050D1502BP500,https://app.lcm-client.com/belimo/matching/40613-01502/a57dd45b8b8bfbbc6b72118464d7f9ab,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01502
7,8,Resistors,Vishay,40613-01503,MCU08050D1503B,MCU08050D1503BP500,https://app.lcm-client.com/belimo/matching/40613-01503/a57dd45b8b8bfbbc6b72118464d80785,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01503
8,9,Resistors,Vishay,40613-01602,MCU08050D1602B,MCU08050D1602BP500,https://app.lcm-client.com/belimo/matching/40613-01602/a57dd45b8b8bfbbc6b72118464d82cc5,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-01602
9,10,Resistors,Vishay,40613-02001,MCU08050D2001B,MCU08050D2001BP500,https://app.lcm-client.com/belimo/matching/40613-02001/a57dd45b8b8bfbbc6b72118464d863d6,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-02001
10,11,Resistors,Vishay,40617-01208,SMM02040C1208F,SMM02040C1208FB300,https://app.lcm-client.com/belimo/matching/40617-01208/a57dd45b8b8bfbbc6b72118464e27bef,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01208
11,12,Resistors,Vishay,40617-01208,MMA02040C1211F,MMA02040C1211FB300,https://app.lcm-client.com/belimo/matching/40617-01211/a57dd45b8b8bfbbc6b72118464e2d494,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01208
12,13,Resistors,Vishay, 40617-01211,SMM02040C1211F,SMM02040C1211FB300,https://app.lcm-client.com/belimo/matching/40617-01211/a57dd45b8b8bfbbc6b72118464e2d5e6,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/ 40617-01211
13,14,Resistors,Vishay,40617-01211,MMA02040C1308F,MMA02040C1308FB300,https://app.lcm-client.com/belimo/matching/40617-01308/a57dd45b8b8bfbbc6b72118464e330ad,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01211
14,15,Resistors,Vishay,40617-01308,SMM02040C1308F,SMM02040C1308FB300,https://app.lcm-client.com/belimo/matching/40617-01308/a57dd45b8b8bfbbc6b72118464e3356a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01308
15,16,Resistors,Vishay,40617-01308,MMA02040C1508F,MMA02040C1508FB300,https://app.lcm-client.com/belimo/matching/40617-01508/a57dd45b8b8bfbbc6b72118464e39977,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01308
16,17,Resistors,Vishay,40617-01508,SMM02040C1508F,SMM02040C1508FB300,https://app.lcm-client.com/belimo/matching/40617-01508/a57dd45b8b8bfbbc6b72118464e3a808,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01508
17,18,Resistors,Vishay,40617-01508,MMA02040C1509F,MMA02040C1509FB300,https://app.lcm-client.com/belimo/matching/40617-01509/a57dd45b8b8bfbbc6b72118464e40ddc,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01508
18,19,Resistors,Vishay,40617-01509,SMM02040C1509F,SMM02040C1509FB300,https://app.lcm-client.com/belimo/matching/40617-01509/a57dd45b8b8bfbbc6b72118464e41200,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01509
19,20,Resistors,Vishay,40617-01509,MMA02040C1800F,MMA02040C1800FB300,https://app.lcm-client.com/belimo/matching/40617-01800/a57dd45b8b8bfbbc6b72118464e48179,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01509
20,21,Resistors,Vishay,40617-03901,SMM02040C3901F,SMM02040C3901FB300,https://app.lcm-client.com/belimo/matching/40617-03901/a57dd45b8b8bfbbc6b72118464e91b53,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03901
21,22,Resistors,Vishay,40617-04301,MMA02040C4301F,MMA02040C4301FB300,https://app.lcm-client.com/belimo/matching/40617-04301/a57dd45b8b8bfbbc6b72118464e98b90,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04301
22,23,Resistors,Vishay,40617-04301,SMM02040C4301F,SMM02040C4301FB300,https://app.lcm-client.com/belimo/matching/40617-04301/a57dd45b8b8bfbbc6b72118464e9917e,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04301
23,24,Resistors,Vishay,40617-04700,MMA02040C4700F,MMA02040C4700FB300,https://app.lcm-client.com/belimo/matching/40617-04700/a57dd45b8b8bfbbc6b72118464ea276d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04700
24,25,Resistors,Vishay,40617-04700,SMM02040C4700F,SMM02040C4700FB300,https://app.lcm-client.com/belimo/matching/40617-04700/a57dd45b8b8bfbbc6b72118464ea2ceb,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04700
25,26,Resistors,Vishay,47180,MBB02070C1052F,MBB02070C1052FRP00,https://app.lcm-client.com/belimo/matching/47180/a57dd45b8b8bfbbc6b72118464f9e611,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47180
26,27,Resistors,Vishay,47181,MBB02070C7322F,MBB02070C7322FRP00,https://app.lcm-client.com/belimo/matching/47181/a57dd45b8b8bfbbc6b72118464fa0d74,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47181
27,28,Resistors,Vishay,47182,MBB02070C8062F,MBB02070C8062FR100 ,https://app.lcm-client.com/belimo/matching/47182/a57dd45b8b8bfbbc6b72118464fa284b,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47182
28,29,Resistors,Vishay,47183,MBB02070C2873F,MBB02070C2873FRP00,https://app.lcm-client.com/belimo/matching/47183/a57dd45b8b8bfbbc6b72118464fa487f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47183
29,30,Resistors,Vishay,47184,MBB02070C4304F,MBB02070C4304FRP00,https://app.lcm-client.com/belimo/matching/47184/a57dd45b8b8bfbbc6b72118464fa7121,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47184
30,31,Resistors,Vishay,47340,MBB02070C4531F,MBB02070C4531FRP00,https://app.lcm-client.com/belimo/matching/47340/a57dd45b8b8bfbbc6b72118464fbae15,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47340
31,32,Resistors,Vishay,47341,MBB02070C5601F,MBB02070C5601FRP00,https://app.lcm-client.com/belimo/matching/47341/a57dd45b8b8bfbbc6b72118464fbbb63,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47341
32,33,Resistors,Vishay,47342,MBB02070C4423F,MBB02070C4423FRP00,https://app.lcm-client.com/belimo/matching/47342/a57dd45b8b8bfbbc6b72118464fbd854,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47342
33,34,Resistors,Vishay,47343,MBB02070C2671F,MBB02070C2671FRP00,https://app.lcm-client.com/belimo/matching/47343/a57dd45b8b8bfbbc6b72118464fbf0df,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47343
34,35,Resistors,Vishay,47344,MBB02070C6202F,MBB02070C6202FRP00,https://app.lcm-client.com/belimo/matching/47344/a57dd45b8b8bfbbc6b72118464fc0ace,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47344
35,36,Resistors,Vishay,47355-01104,MBB02070C1104F,MBB02070C1104FRP00,https://app.lcm-client.com/belimo/matching/47355-01104/a57dd45b8b8bfbbc6b72118464fc27b6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01104
36,37,Resistors,Vishay,47355-01104,MRS25000C1104F,MRS25000C1104FRP00,https://app.lcm-client.com/belimo/matching/47355-01104/a57dd45b8b8bfbbc6b72118464fc3277,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01104
37,38,Resistors,Vishay,47355-01153,MBB02070C1153F,MBB02070C1153FRP00,https://app.lcm-client.com/belimo/matching/47355-01153/a57dd45b8b8bfbbc6b72118464fc55bf,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01153
38,39,Resistors,Vishay,47355-01153,MRS25000C1153F,MRS25000C1153FRP00 ,https://app.lcm-client.com/belimo/matching/47355-01153/a57dd45b8b8bfbbc6b72118464fc6578,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01153
39,40,Resistors,Vishay,47355-01208,MBB02070C1208F,MBB02070C1208FRP00,https://app.lcm-client.com/belimo/matching/47355-01208/a57dd45b8b8bfbbc6b72118464fc73ef,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01208
40,41,Resistors,Vishay,40617-04992,SMM02040C4992F,SMM02040C4992FB300,https://app.lcm-client.com/belimo/matching/40617-04992/c8cb570d5127ae96aaae8eee6648e367,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04992
41,42,Resistors,Vishay,40617-05109,MMA02040C5109F,MMA02040C5109FB300,https://app.lcm-client.com/belimo/matching/40617-05109/c8cb570d5127ae96aaae8eee66495230,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-05109
42,43,Resistors,Vishay,40617-05109,SMM02040C5109F,SMM02040C5109FB300,https://app.lcm-client.com/belimo/matching/40617-05109/c8cb570d5127ae96aaae8eee66496136,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-05109
43,44,Resistors,Vishay,40617-05601,MMA02040C5601F,MMA02040C5601FB300,https://app.lcm-client.com/belimo/matching/40617-05601/c8cb570d5127ae96aaae8eee6649c485,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-05601
44,45,Resistors,Vishay,40617-05601,SMM02040C5601F,SMM02040C5601FB300,https://app.lcm-client.com/belimo/matching/40617-05601/c8cb570d5127ae96aaae8eee6649c730,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-05601
45,46,Resistors,Vishay,40617-06208,MMA02040C6208F,MMA02040C6208FB300,https://app.lcm-client.com/belimo/matching/40617-06208/c8cb570d5127ae96aaae8eee664a2dc7,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06208
46,47,Resistors,Vishay,40617-06208,SMM02040C6208F,SMM02040C6208FB300,https://app.lcm-client.com/belimo/matching/40617-06208/c8cb570d5127ae96aaae8eee664a3d62,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06208
47,48,Resistors,Vishay,40617-06800,MMA02040C6800F,MMA02040C6800FB300,https://app.lcm-client.com/belimo/matching/40617-06800/c8cb570d5127ae96aaae8eee664aadfe,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06800
48,49,Resistors,Vishay,40617-06800,SMM02040C6800F,SMM02040C6800FB300,https://app.lcm-client.com/belimo/matching/40617-06800/c8cb570d5127ae96aaae8eee664ab3f4,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06800
49,50,Resistors,Vishay,40617-06801,MMA02040C6801F,MMA02040C6801FB300,https://app.lcm-client.com/belimo/matching/40617-06801/c8cb570d5127ae96aaae8eee664b9f72,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06801
50,51,Resistors,Vishay,40618-07502,CRCW251275K0JN,CRCW251275K0JNEG,https://app.lcm-client.com/belimo/matching/40618-07502/c8cb570d5127ae96aaae8eee664dbba8,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/40618-07502
51,52,Resistors,Vishay,40663-03307,MMB02070C3307J,MMB02070C3307JB200,https://app.lcm-client.com/belimo/matching/40663-03307/c8cb570d5127ae96aaae8eee664ded91,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40663-03307
52,53,Resistors,Vishay,40663-05107,MMB02070C5107J,MMB02070C5107JB200,https://app.lcm-client.com/belimo/matching/40663-05107/c8cb570d5127ae96aaae8eee664e0785,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40663-05107
53,54,Resistors,Vishay,40701-01001,PR01000101001F,PR01000101001FR500,https://app.lcm-client.com/belimo/matching/40701-01001/c8cb570d5127ae96aaae8eee664e1100,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40701-01001
54,55,Resistors,Vishay,40702,MBE04140C8200F,MBE04140C8200FR200,https://app.lcm-client.com/belimo/matching/40702/c8cb570d5127ae96aaae8eee664e2354,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40702
55,56,Resistors,Vishay,40703-04990,PR02000204990F,PR02000204990FR500,https://app.lcm-client.com/belimo/matching/40703-04990/c8cb570d5127ae96aaae8eee664e3084,nok,Automotive,Yes,y,Missing In LCM,https://app.lcm-client.com/belimo/part/40703-04990
56,57,Resistors,Vishay,40710-05600,CPF3560R00FKE,CPF3560R00FKEE6,https://app.lcm-client.com/belimo/matching/40710-05600/c8cb570d5127ae96aaae8eee664e4712,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40710-05600
57,58,Resistors,Vishay,40710-05600,CPF3560R00FLE,CPF3560R00FLE36,https://app.lcm-client.com/belimo/matching/40710-05600/c8cb570d5127ae96aaae8eee664e48da,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40710-05600
58,59,Resistors,Vishay,41917-02208,RCS12062R20JN,RCS12062R20JNEA,https://app.lcm-client.com/belimo/matching/41917-02208/c8cb570d5127ae96aaae8eee66591f88,ok,STD,Exption,n,,https://app.lcm-client.com/belimo/part/41917-02208
59,60,Resistors,Vishay,41917-02209,RCS120622R0JN,RCS120622R0JNEA,https://app.lcm-client.com/belimo/matching/41917-02209/c8cb570d5127ae96aaae8eee66593e8b,ok,STD,Exption,n,,https://app.lcm-client.com/belimo/part/41917-02209
60,61,Resistors,Vishay,47012-02371,MRS25000C2371F,MRS25000C2371FRP00,https://app.lcm-client.com/belimo/matching/47012-02371/c8cb570d5127ae96aaae8eee665ba18c,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-02371
61,62,Resistors,Vishay,47012-02400,MBB02070C2400F,MBB02070C2400FRP00,https://app.lcm-client.com/belimo/matching/47012-02400/c8cb570d5127ae96aaae8eee665bc184,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47012-02400
62,63,Resistors,Vishay,47012-02400,MRS25000C2400F,MRS25000C2400FRP00,https://app.lcm-client.com/belimo/matching/47012-02400/c8cb570d5127ae96aaae8eee665bcc30,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47012-02400
63,64,Resistors,Vishay,47072,MBB02070C3301F,MBB02070C3301FRP00,https://app.lcm-client.com/belimo/matching/47072/c8cb570d5127ae96aaae8eee665e3813,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47072
64,65,Resistors,Vishay,47080,MBB02070C1603F,MBB02070C1603FRP00,https://app.lcm-client.com/belimo/matching/47080/c8cb570d5127ae96aaae8eee665e5210,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47080
65,66,Resistors,Vishay,47100,MBB02070C4122F,MBB02070C4122FRP00,https://app.lcm-client.com/belimo/matching/47100/c8cb570d5127ae96aaae8eee665e71cc,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47100
66,67,Resistors,Vishay,47101,MBB02070C1479F,MBB02070C1479FRP00,https://app.lcm-client.com/belimo/matching/47101/c8cb570d5127ae96aaae8eee665e9aa1,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47101
67,68,Resistors,Vishay,47102,MBB02070C8871F,MBB02070C8871FRP00,https://app.lcm-client.com/belimo/matching/47102/c8cb570d5127ae96aaae8eee665eb013,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47102
68,69,Resistors,Vishay,47103,MBB02070C2491F,MBB02070C2491FRP00,https://app.lcm-client.com/belimo/matching/47103/c8cb570d5127ae96aaae8eee665ed09c,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47103
69,70,Resistors,Vishay,47122,MBB02070C1583F,MBB02070C1583FRP00,https://app.lcm-client.com/belimo/matching/47122/c8cb570d5127ae96aaae8eee665f1b46,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47122
70,71,Resistors,Vishay,47142,MBB02070C8201F,MBB02070C8201FRP00,https://app.lcm-client.com/belimo/matching/47142/c8cb570d5127ae96aaae8eee66606f98,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47142
71,72,Resistors,Vishay,47145,MBB02070C1203F,MBB02070C1203FRP00,https://app.lcm-client.com/belimo/matching/47145/c8cb570d5127ae96aaae8eee6660a704,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47145
72,73,Resistors,Vishay,47162,MBB02070C5362F,MBB02070C5362FRP00,https://app.lcm-client.com/belimo/matching/47162/c8cb570d5127ae96aaae8eee6660c3c6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47162
73,74,Resistors,Vishay,47168,MBB02070C3003F,MBB02070C3003FRP00,https://app.lcm-client.com/belimo/matching/47168/c8cb570d5127ae96aaae8eee6660fe68,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47168
74,75,Resistors,Vishay,47179,MBB02070C9760F,MBB02070C9760FRP00,https://app.lcm-client.com/belimo/matching/47179/c8cb570d5127ae96aaae8eee666120a3,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47179
75,76,Resistors,Vishay,40412-02701,CRCW06032K70DH,CRCW06032K70DHEAP,https://app.lcm-client.com/belimo/matching/40412-02701/ef351458b324e0850a464074929e4c4e,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/40412-02701
76,77,Resistors,Vishay,40412-02701,CRCW06032K70DK,CRCW06032K70DHEAP,https://app.lcm-client.com/belimo/matching/40412-02701/ef351458b324e0850a464074929e54c2,ok,Automotive,Exption,y,PPM Difference,https://app.lcm-client.com/belimo/part/40412-02701
77,78,Resistors,Vishay,40542,MBB02070C2702F,MBB02070C2702FRP00 ,https://app.lcm-client.com/belimo/matching/40542/ef351458b324e0850a464074929f8a38,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40542
78,79,Resistors,Vishay,40542,MBB0207IC2702F,MBB0207IC2702FRP00,https://app.lcm-client.com/belimo/matching/40542/ef351458b324e0850a464074929f962a,nok,Medical,Yes,y,Missing In LCM,https://app.lcm-client.com/belimo/part/40542
79,80,Resistors,Vishay,40542,MRS25000C2702F,MRS25000C2702FRP00,https://app.lcm-client.com/belimo/matching/40542/ef351458b324e0850a464074929f971d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40542
80,81,Resistors,Vishay,40602-01100,SMM02070C1100F,SMM02070C1100FBS00,https://app.lcm-client.com/belimo/matching/40602-01100/ef351458b324e0850a46407492a0fcf3,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01100
81,82,Resistors,Vishay,40602-01501,MMB02070C1501F,MMB02070C1501FB700,https://app.lcm-client.com/belimo/matching/40602-01501/ef351458b324e0850a46407492a1312e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01501
82,83,Resistors,Vishay,40602-01501,SMM02070C1501F,SMM02070C1501FBS00,https://app.lcm-client.com/belimo/matching/40602-01501/ef351458b324e0850a46407492a13317,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01501
83,84,Resistors,Vishay,40602-01503,MMB02070C1503F,MMB02070C1503FB200,https://app.lcm-client.com/belimo/matching/40602-01503/ef351458b324e0850a46407492a166ca,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01503
84,85,Resistors,Vishay,40602-01503,SMM02070C1503F,SMM02070C1503FBS00,https://app.lcm-client.com/belimo/matching/40602-01503/ef351458b324e0850a46407492a172df,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01503
85,86,Resistors,Vishay,40602-01801,MMB02070C1801F,MMB02070C1801FB700,https://app.lcm-client.com/belimo/matching/40602-01801/ef351458b324e0850a46407492a19e31,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01801
86,87,Resistors,Vishay,40602-01801,SMM02070C1801F,SMM02070C1801FBS00,https://app.lcm-client.com/belimo/matching/40602-01801/ef351458b324e0850a46407492a1adcd,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01801
87,88,Resistors,Vishay,40602-02201,MMB02070C2201F,MMB02070C2201FB700,https://app.lcm-client.com/belimo/matching/40602-02201/ef351458b324e0850a46407492a1e4d1,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02201
88,89,Resistors,Vishay,40602-02201,SMM02070C2201F,SMM02070C2201FBS00,https://app.lcm-client.com/belimo/matching/40602-02201/ef351458b324e0850a46407492a1e7f8,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02201
89,90,Resistors,Vishay,40602-02203,MMB02070C2203F,MMB02070C2203FB200,https://app.lcm-client.com/belimo/matching/40602-02203/ef351458b324e0850a46407492a21787,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02203
90,91,Resistors,Vishay,40602-04701,SMM02070C4701F,SMM02070C4701FBS00,https://app.lcm-client.com/belimo/matching/40602-04701/ef351458b324e0850a46407492a55cd6,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04701
91,92,Resistors,Vishay,40602-04702,MMB02070C4702F,MMB02070C4702FB200,https://app.lcm-client.com/belimo/matching/40602-04702/ef351458b324e0850a46407492a5987a,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04702
92,93,Resistors,Vishay,40602-04702,SMM02070C4702F,SMM02070C4702FBS00 ,https://app.lcm-client.com/belimo/matching/40602-04702/ef351458b324e0850a46407492a59e12,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04702
93,94,Resistors,Vishay,40602-04703,MMB02070C4703F,MMB02070C4703FB200 ,https://app.lcm-client.com/belimo/matching/40602-04703/ef351458b324e0850a46407492a5c84a,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04703
94,95,Resistors,Vishay,40602-04703,SMM02070C4703F,SMM02070C4703FBS00,https://app.lcm-client.com/belimo/matching/40602-04703/ef351458b324e0850a46407492a5cef1,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04703
95,96,Resistors,Vishay,40602-05100,MMB02070C5100F,MMB02070C5100FB700,https://app.lcm-client.com/belimo/matching/40602-05100/ef351458b324e0850a46407492a6213a,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05100
96,97,Resistors,Vishay,40602-05100,SMM02070C5100F,SMM02070C5100FBP00,https://app.lcm-client.com/belimo/matching/40602-05100/ef351458b324e0850a46407492a628ff,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05100
97,98,Resistors,Vishay,40602-05603,MMB02070C5603F,MMB02070C5603FB700,https://app.lcm-client.com/belimo/matching/40602-05603/ef351458b324e0850a46407492a653e8,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05603
98,99,Resistors,Vishay,40602-05603,SMM02070C5603F,SMM02070C5603FBS00,https://app.lcm-client.com/belimo/matching/40602-05603/ef351458b324e0850a46407492a65dfb,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05603
99,100,Resistors,Vishay,40602-05607,MMB02070C5607F,MMB02070C5607FB200,https://app.lcm-client.com/belimo/matching/40602-05607/ef351458b324e0850a46407492a66cc9,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05607
100,101,Resistors,Vishay,40613-02002,MCU08050D2002B,MCU08050D2002BP500,https://app.lcm-client.com/belimo/matching/40613-02002/a57dd45b8b8bfbbc6b72118464d889cb,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-02002
101,102,Resistors,Vishay,40613-02432,MCU08050D2431B,MCU08050D2431BP500,https://app.lcm-client.com/belimo/matching/40613-02432/a57dd45b8b8bfbbc6b72118464d8b980,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-02432
102,103,Resistors,Vishay,40613-03321,MCU08050D3321B,MCU08050D3321BP500,https://app.lcm-client.com/belimo/matching/40613-03321/a57dd45b8b8bfbbc6b72118464d8ef7d,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-03321
103,104,Resistors,Vishay,40613-03601,MCU08050D3601B,MCU08050D3601BP500,https://app.lcm-client.com/belimo/matching/40613-03601/a57dd45b8b8bfbbc6b72118464d918c6,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-03601
104,105,Resistors,Vishay,40613-04022,MCU08050D4022B,MCU08050D4022BP500,https://app.lcm-client.com/belimo/matching/40613-04022/a57dd45b8b8bfbbc6b72118464da3edf,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-04022
105,106,Resistors,Vishay,40613-06802,MCU08050D6802B,MCU08050D6802BP500,https://app.lcm-client.com/belimo/matching/40613-06802/a57dd45b8b8bfbbc6b72118464da579b,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-06802
106,107,Resistors,Vishay,40613-07871,MCU08050D7871B,MCU08050D7871BP500,https://app.lcm-client.com/belimo/matching/40613-07871/a57dd45b8b8bfbbc6b72118464da6f4d,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-07871
107,108,Resistors,Vishay,40613-09762,MCU08050D9762B,MCU08050D9762BP500,https://app.lcm-client.com/belimo/matching/40613-09762/a57dd45b8b8bfbbc6b72118464da97e7,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/40613-09762
108,109,Resistors,Vishay,40617-01204,MMA02040C1205F,MMA02040C1205FB300,https://app.lcm-client.com/belimo/matching/40617-01204/a57dd45b8b8bfbbc6b72118464e1f209,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01204
109,110,Resistors,Vishay,40617-01208,MMA02040C1208F,MMA02040C1208FB300,https://app.lcm-client.com/belimo/matching/40617-01208/a57dd45b8b8bfbbc6b72118464e26c1f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01208
110,111,Resistors,Vishay,47215,MBB02070C3603F,MBB02070C3603FRP00,https://app.lcm-client.com/belimo/matching/47215/a57dd45b8b8bfbbc6b72118464fa91aa,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47215
111,112,Resistors,Vishay,47232,MBB02070C5622F,MBB02070C5622FRP00,https://app.lcm-client.com/belimo/matching/47232/a57dd45b8b8bfbbc6b72118464fabb7c,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47232
112,113,Resistors,Vishay,47245,MBB02070C1330F,MBB02070C1330FRP00,https://app.lcm-client.com/belimo/matching/47245/a57dd45b8b8bfbbc6b72118464fadaf4,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47245
113,114,Resistors,Vishay,47251,MBB02070C1371F,MBB02070C1371FRP00,https://app.lcm-client.com/belimo/matching/47251/a57dd45b8b8bfbbc6b72118464faf77a,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47251
114,115,Resistors,Vishay,47274,MBB02070C1108F,MBB02070C1108FRP00,https://app.lcm-client.com/belimo/matching/47274/a57dd45b8b8bfbbc6b72118464fb1287,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47274
115,116,Resistors,Vishay,47313,MBB02070C3303F,MBB02070C3303FRP00,https://app.lcm-client.com/belimo/matching/47313/a57dd45b8b8bfbbc6b72118464fb22db,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47313
116,117,Resistors,Vishay,47315,MBB02070C1604F,MBB02070C1604FRP00,https://app.lcm-client.com/belimo/matching/47315/a57dd45b8b8bfbbc6b72118464fb3e0d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47315
117,118,Resistors,Vishay,47316,MBB02070C4704F,MBB02070C4704FRP00,https://app.lcm-client.com/belimo/matching/47316/a57dd45b8b8bfbbc6b72118464fb5c4f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47316
118,119,Resistors,Vishay,47337,MBB02070C2002F,MBB02070C2002FRP00,https://app.lcm-client.com/belimo/matching/47337/a57dd45b8b8bfbbc6b72118464fb756d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47337
119,120,Resistors,Vishay,47339,MBB02070C6802F,MBB02070C6802FRP00,https://app.lcm-client.com/belimo/matching/47339/a57dd45b8b8bfbbc6b72118464fb8f39,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47339
120,121,Resistors,Vishay,40617-06801,SMM02040C6801F,SMM02040C6801FB000,https://app.lcm-client.com/belimo/matching/40617-06801/c8cb570d5127ae96aaae8eee664ba638,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06801
121,122,Resistors,Vishay,40617-06807,MMA02040C6807F,MMA02040C6807FB300,https://app.lcm-client.com/belimo/matching/40617-06807/c8cb570d5127ae96aaae8eee664c0b79,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06807
122,123,Resistors,Vishay,40617-06807,SMM02040B6807J,SMM02040B6807JB000,https://app.lcm-client.com/belimo/matching/40617-06807/c8cb570d5127ae96aaae8eee664c1061,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06807
123,124,Resistors,Vishay,40617-07502,MMA02040C7502F,MMA02040C7502FB200,https://app.lcm-client.com/belimo/matching/40617-07502/c8cb570d5127ae96aaae8eee664c7046,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-07502
124,125,Resistors,Vishay,40617-07502,SMM02040C7502F,SMM02040C7502FB000,https://app.lcm-client.com/belimo/matching/40617-07502/c8cb570d5127ae96aaae8eee664c780d,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-07502
125,126,Resistors,Vishay,40617-09107,MMA02040C9107F,MMA02040C9107FB300,https://app.lcm-client.com/belimo/matching/40617-09107/c8cb570d5127ae96aaae8eee664cd373,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-09107
126,127,Resistors,Vishay,40617-09107,SMM02040C9107F,SMM02040C9107FB000,https://app.lcm-client.com/belimo/matching/40617-09107/c8cb570d5127ae96aaae8eee664cd73a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-09107
127,128,Resistors,Vishay,40618-01001,CRCW25121K00JN,CRCW25121K00JNEG,https://app.lcm-client.com/belimo/matching/40618-01001/c8cb570d5127ae96aaae8eee664d0cdc,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/40618-01001
128,129,Resistors,Vishay,40618-01501,CRCW25121K50JN,CRCW25121K50JNEG,https://app.lcm-client.com/belimo/matching/40618-01501/c8cb570d5127ae96aaae8eee664d2f90,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/40618-01501
129,130,Resistors,Vishay,40618-02401,CRCW25122K40JN,CRCW25122K40JNEG,https://app.lcm-client.com/belimo/matching/40618-02401/c8cb570d5127ae96aaae8eee664d5a8d,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/40618-02401
130,131,Resistors,Vishay,47123,MBB02070C1873F,MBB02070C1873FRP00,https://app.lcm-client.com/belimo/matching/47123/c8cb570d5127ae96aaae8eee665f3f95,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47123
131,132,Resistors,Vishay,47125,MBB02070C1008F,MBB02070C1008FRP00,https://app.lcm-client.com/belimo/matching/47125/c8cb570d5127ae96aaae8eee665f5b74,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47125
132,133,Resistors,Vishay,47131,MBB02070C6193F,MBB02070C6193FRP00,https://app.lcm-client.com/belimo/matching/47131/c8cb570d5127ae96aaae8eee665f8495,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47131
133,134,Resistors,Vishay,47132,MBB02070C3323F,MBB02070C3323FRP00,https://app.lcm-client.com/belimo/matching/47132/c8cb570d5127ae96aaae8eee665fa357,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47132
134,135,Resistors,Vishay,47133,MBB02070C1433F,MBB02070C1433FRP00,https://app.lcm-client.com/belimo/matching/47133/c8cb570d5127ae96aaae8eee665fc181,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47133
135,136,Resistors,Vishay,47137,MBB02070C4700F,MBB02070C4700FRP00,https://app.lcm-client.com/belimo/matching/47137/c8cb570d5127ae96aaae8eee665fddc6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47137
136,137,Resistors,Vishay,47138,MBB02070C1653F,MBB02070C1653FRP00,https://app.lcm-client.com/belimo/matching/47138/c8cb570d5127ae96aaae8eee6660128b,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47138
137,138,Resistors,Vishay,47139,MBB02070C9104F,MBB02070C9104FRP00,https://app.lcm-client.com/belimo/matching/47139/c8cb570d5127ae96aaae8eee66602471,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47139
138,139,Resistors,Vishay,47140,MBB02070C3652F,MBB02070C3652FRP00,https://app.lcm-client.com/belimo/matching/47140/c8cb570d5127ae96aaae8eee6660397f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47140
139,140,Resistors,Vishay,47141,MBB02070C4873F,MBB02070C4873FRP00,https://app.lcm-client.com/belimo/matching/47141/c8cb570d5127ae96aaae8eee66605f85,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47141
140,141,Resistors,Vishay,40602-02203,SMM02070C2203F,SMM02070C2203FBS00,https://app.lcm-client.com/belimo/matching/40602-02203/ef351458b324e0850a46407492a2262b,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02203
141,142,Resistors,Vishay,40602-02204,MMB02070C2204F,MMB02070C2204FB200,https://app.lcm-client.com/belimo/matching/40602-02204/ef351458b324e0850a46407492a250b9,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02204
142,143,Resistors,Vishay,40602-02204,SMM02070C2204F,SMM02070C2204FBS00,https://app.lcm-client.com/belimo/matching/40602-02204/ef351458b324e0850a46407492a2542a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02204
143,144,Resistors,Vishay,40602-02401,MMB02070C2401F,MMB02070C2401FB200,https://app.lcm-client.com/belimo/matching/40602-02401/ef351458b324e0850a46407492a28bcc,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02401
144,145,Resistors,Vishay,40602-02401,SMM02070C2401F,SMM02070C2401FBS00,https://app.lcm-client.com/belimo/matching/40602-02401/ef351458b324e0850a46407492a295bf,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02401
145,146,Resistors,Vishay,40602-02402,MMB02070C2402F,MMB02070C2402FB200,https://app.lcm-client.com/belimo/matching/40602-02402/ef351458b324e0850a46407492a2d0e4,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02402
146,147,Resistors,Vishay,40602-02402,SMM02070C2402F,SMM02070C2402FBS00,https://app.lcm-client.com/belimo/matching/40602-02402/ef351458b324e0850a46407492a2d8ad,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02402
147,148,Resistors,Vishay,40602-02403,MMB02070C2403F,MMB02070C2403FB700,https://app.lcm-client.com/belimo/matching/40602-02403/ef351458b324e0850a46407492a2f357,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02403
148,149,Resistors,Vishay,40602-02403,SMM02070C2403F,SMM02070C2403FBP00,https://app.lcm-client.com/belimo/matching/40602-02403/ef351458b324e0850a46407492a2ffb8,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02403
149,150,Resistors,Vishay,40602-02491,MMB02070C2491F,MMB02070C2491FB700,https://app.lcm-client.com/belimo/matching/40602-02491/ef351458b324e0850a46407492a32ce6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02491
150,151,Resistors,Vishay,40602-06209,MMB02070C6209F,MMB02070C6209FB200,https://app.lcm-client.com/belimo/matching/40602-06209/ef351458b324e0850a46407492a6a237,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-06209
151,152,Resistors,Vishay,40602-06209,SMM02070C6209F,SMM02070C6209FBP00,https://app.lcm-client.com/belimo/matching/40602-06209/ef351458b324e0850a46407492a6a9a2,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-06209
152,153,Resistors,Vishay,40602-07502,MMB02070C7502F,MMB02070C7502FB700,https://app.lcm-client.com/belimo/matching/40602-07502/ef351458b324e0850a46407492a6e1c2,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-07502
153,154,Resistors,Vishay,40602-07502,SMM02070C7502F,SMM02070C7502FBS00,https://app.lcm-client.com/belimo/matching/40602-07502/ef351458b324e0850a46407492a6ee06,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-07502
154,155,Resistors,Vishay,40602-08063,MMB02070C8063F,MMB02070C8063FB700,https://app.lcm-client.com/belimo/matching/40602-08063/ef351458b324e0850a46407492a7303b,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08063
155,156,Resistors,Vishay,40602-08063,SMM02070C8063F,SMM02070C8063FBP00,https://app.lcm-client.com/belimo/matching/40602-08063/ef351458b324e0850a46407492a737bf,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08063
156,157,Resistors,Vishay,40602-08202,MMB02070C8202F,MMB02070C8202FB300,https://app.lcm-client.com/belimo/matching/40602-08202/ef351458b324e0850a46407492a76d3e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08202
157,158,Resistors,Vishay,40602-08202,SMM02070C8202F,SMM02070C8202FBS00,https://app.lcm-client.com/belimo/matching/40602-08202/ef351458b324e0850a46407492a770da,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08202
158,159,Resistors,Vishay,40602-08207,MMB02070C8207F,MMB02070C8207FB200,https://app.lcm-client.com/belimo/matching/40602-08207/ef351458b324e0850a46407492a78da5,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08207
159,160,Resistors,Vishay,40602-09100,MMB02070C9100F,MMB02070C9100FB700,https://app.lcm-client.com/belimo/matching/40602-09100/ef351458b324e0850a46407492a7a753,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-09100
160,161,Resistors,Vishay,40617-01108,SMM02040C1108F,SMM02040C1108FB300,https://app.lcm-client.com/belimo/matching/40617-01108/ef351458b324e0850a46407492bb4cca,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01108
161,162,Resistors,Vishay,40617-01201,MMA02040C1201F,MMA02040C1201FB300,https://app.lcm-client.com/belimo/matching/40617-01201/ef351458b324e0850a46407492bb95e2,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01201
162,163,Resistors,Vishay,40617-01201,SMM02040C1201F,SMM02040C1201FB000,https://app.lcm-client.com/belimo/matching/40617-01201/ef351458b324e0850a46407492bb972a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01201
163,164,Resistors,Vishay,40617-01202,MMA02040C1202F,MMA02040C1202FB000,https://app.lcm-client.com/belimo/matching/40617-01202/ef351458b324e0850a46407492bbf6a3,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01202
164,165,Resistors,Vishay,40617-01202,SMM02040C1202F,SMM02040C1202FB000,https://app.lcm-client.com/belimo/matching/40617-01202/ef351458b324e0850a46407492bbfc0f,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01202
165,166,Resistors,Vishay,40617-01801,MMA02040C1801F,MMA02040C1801FB000,https://app.lcm-client.com/belimo/matching/40617-01801/ef351458b324e0850a46407492be01bb,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01801
166,167,Resistors,Vishay,40617-01801,SMM02040C1801F,SMM02040C1801FB000,https://app.lcm-client.com/belimo/matching/40617-01801/ef351458b324e0850a46407492be0e90,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01801
167,168,Resistors,Vishay,40617-01808,MMA02040C1808F,MMA02040C1808FB000,https://app.lcm-client.com/belimo/matching/40617-01808/ef351458b324e0850a46407492be536e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01808
168,169,Resistors,Vishay,40617-01808,SMM02040C1808F,SMM02040C1808FB300,https://app.lcm-client.com/belimo/matching/40617-01808/ef351458b324e0850a46407492be5915,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01808
169,170,Resistors,Vishay,40617-02002,MMA02040C2002F,MMA02040C2002FB300,https://app.lcm-client.com/belimo/matching/40617-02002/ef351458b324e0850a46407492becaa5,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02002
170,171,Resistors,Vishay,40754,PR02FS0205608K,PR02FS0205608KR500,https://app.lcm-client.com/belimo/matching/40754/ef351458b324e0850a46407492c56031,nok,Automotive,Yes,y,Requires Update,https://app.lcm-client.com/belimo/part/40754
171,172,Resistors,Vishay,40754-01502,CPF215K000JN,CPF215K000JNEE6,https://app.lcm-client.com/belimo/matching/40754/ef351458b324e0850a46407492c56031,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40754-01502
172,173,Resistors,Vishay,40754-01502,PR02000201502J,PR02000201502JR500,https://app.lcm-client.com/belimo/matching/40754-01502/ef351458b324e0850a46407492c57dde,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40754-01502
173,174,Resistors,Vishay,40754-08201,CPF28K2000JN,CPF28K2000JNEE6,https://app.lcm-client.com/belimo/matching/40754-08201/ef351458b324e0850a46407492c580d0,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40754-08201
174,175,Resistors,Vishay,40754-08201,PR02000208201J,PR02000208201JR500,https://app.lcm-client.com/belimo/matching/40754-08201/ef351458b324e0850a46407492c5908d,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40754-08201
175,176,Resistors,Vishay,40754-15608,CPF25R6000JN,CPF25R6000JNEE6,https://app.lcm-client.com/belimo/matching/40754-15608/ef351458b324e0850a46407492c5b5db,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40754-15608
176,177,Resistors,Vishay,40754-15608,PR02000205608J,PR02000205608JR500,https://app.lcm-client.com/belimo/matching/40754-15608/ef351458b324e0850a46407492c5bcec,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40754-15608
177,178,Resistors,Vishay,40850,MBB02070C1101F,MBB02070C1101FRP00,https://app.lcm-client.com/belimo/matching/40850/ef351458b324e0850a46407492c6a39a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40850
178,179,Resistors,Vishay,40850,MRS25000C1101F,MRS25000C1101FRP00,https://app.lcm-client.com/belimo/matching/40850/ef351458b324e0850a46407492c6a870,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40850
179,180,Resistors,Vishay,40851,MBB02070C1501F,MBB02070C1501FRP00,https://app.lcm-client.com/belimo/matching/40851/ef351458b324e0850a46407492c6be78,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40851
180,181,Resistors,Vishay,40862,MRS25000C2203F,MRS25000C2203FRP00,https://app.lcm-client.com/belimo/matching/40862/ef351458b324e0850a46407492c741c4,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40862
181,182,Resistors,Vishay,40867,MBB02070C2403F,MBB02070C2403FRP00,https://app.lcm-client.com/belimo/matching/40867/ef351458b324e0850a46407492c751d7,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40867
182,183,Resistors,Vishay,40867,MRS25000C2403F,MRS25000C2403FRP00,https://app.lcm-client.com/belimo/matching/40867/ef351458b324e0850a46407492c755f8,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40867
183,184,Resistors,Vishay,40877,MBB02070C8661F,MBB02070C8661FRP00,https://app.lcm-client.com/belimo/matching/40877/ef351458b324e0850a46407492c770f6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40877
184,185,Resistors,Vishay,40877,MRS25000C8661F,MRS25000C8661FRP00,https://app.lcm-client.com/belimo/matching/40877/ef351458b324e0850a46407492c77fc8,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40877
185,186,Resistors,Vishay,40885,MBB02070C4221F,MBB02070C4221FRP00,https://app.lcm-client.com/belimo/matching/40885/ef351458b324e0850a46407492c78d94,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40885
186,187,Resistors,Vishay,40885,MRS25000C4221F,MRS25000C4221FRP00,https://app.lcm-client.com/belimo/matching/40885/ef351458b324e0850a46407492c791fe,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40885
187,188,Resistors,Vishay,40897,MBB02070C1009F,MBB02070C1009FRP00,https://app.lcm-client.com/belimo/matching/40897/ef351458b324e0850a46407492c85cab,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40897
188,189,Resistors,Vishay,40897,MRS25000C1009F,MRS25000C1009FRP00,https://app.lcm-client.com/belimo/matching/40897/ef351458b324e0850a46407492c85f06,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40897
189,190,Resistors,Vishay,40898,MBB02070C1102F,MBB02070C1102FRP00,https://app.lcm-client.com/belimo/matching/40898/ef351458b324e0850a46407492c87371,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40898
190,191,Resistors,Vishay,40926,MRS25000C8202F,MRS25000C8202FRP00,https://app.lcm-client.com/belimo/matching/40926/ef351458b324e0850a46407492c9893e,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40926
191,192,Resistors,Vishay,40927,MBB02070C1003F,MBB02070C1003FRP00,https://app.lcm-client.com/belimo/matching/40927/ef351458b324e0850a46407492c99e8a,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40927
192,193,Resistors,Vishay,40927,MRS25000C1003F,MRS25000C1003FRP00,https://app.lcm-client.com/belimo/matching/40927/ef351458b324e0850a46407492c9aaf7,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40927
193,194,Resistors,Vishay,40934,MRS25000C6202F,MRS25000C6202FRP00,https://app.lcm-client.com/belimo/matching/40934/ef351458b324e0850a46407492c9d6ee,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40934
194,195,Resistors,Vishay,40941,MBB02070C5602F,MBB02070C5602FRP00,https://app.lcm-client.com/belimo/matching/40941/ef351458b324e0850a46407492c9f1f8,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40941
195,196,Resistors,Vishay,40941,MRS25000C5602F,MRS25000C5602FRP00,https://app.lcm-client.com/belimo/matching/40941/ef351458b324e0850a46407492c9f940,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40941
196,197,Resistors,Vishay,40949,MBB02070C1500F,MBB02070C1500FRP00,https://app.lcm-client.com/belimo/matching/40949/ef351458b324e0850a46407492ca0e61,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40949
197,198,Resistors,Vishay,40949,MRS25000C1500F,MRS25000C1500FRP00,https://app.lcm-client.com/belimo/matching/40949/ef351458b324e0850a46407492ca16be,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40949
198,199,Resistors,Vishay,41237-01102,MMA02040D1102C,MMA02040D1102CB300,https://app.lcm-client.com/belimo/matching/40949/ef351458b324e0850a46407492ca16be,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/41237-01102
199,200,Resistors,Vishay,41749-02200,CMB02070X2200G,CMB02070X2200GB700,https://app.lcm-client.com/belimo/matching/41749-02200/ef351458b324e0850a46407492cb2e74,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/41749-02200
200,201,Resistors,Vishay,41861-02001,MCS04020D2001B,MCS04020D2001BE000,https://app.lcm-client.com/belimo/matching/41861-02001/ef351458b324e0850a46407492cd04a3,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/41861-02001
201,202,Resistors,Vishay,41861-02053,MCS04020D2053B,MCS04020D2053BE000,https://app.lcm-client.com/belimo/matching/41861-02053/ef351458b324e0850a46407492cd3674,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/41861-02053
202,203,Resistors,Vishay,41861-02702,MCS04020D2702B,MCS04020D2702BE000,https://app.lcm-client.com/belimo/matching/41861-02702/ef351458b324e0850a46407492cd5b69,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/41861-02702
203,204,Resistors,Vishay,41861-06802,MCS04020D6802B,MCS04020D6802BE000,https://app.lcm-client.com/belimo/matching/41861-06802/ef351458b324e0850a46407492cd9fd4,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/41861-06802
204,205,Resistors,Vishay,47012-02550,MBB02070C2550F,MBB02070C2550FRP00,https://app.lcm-client.com/belimo/matching/47012-02550/ef351458b324e0850a46407492d6899c,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/47012-02550
205,206,Resistors,Vishay,47012-02550,MRS25000C2550F,MRS25000C2550FRP00,https://app.lcm-client.com/belimo/matching/47012-02550/ef351458b324e0850a46407492d68c0f,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-02550
206,207,Resistors,Vishay,47012-03303,MRS25000C3303F,MRS25000C3303FRP00,https://app.lcm-client.com/belimo/matching/47012-03303/ef351458b324e0850a46407492d6aa08,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-03303
207,208,Resistors,Vishay,47012-03308,MBB02070C3308F,MBB02070C3308FRP00,https://app.lcm-client.com/belimo/matching/47012-03308/ef351458b324e0850a46407492d6c42d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47012-03308
208,209,Resistors,Vishay,47012-03308,MRS25000C3308F,MRS25000C3308FRP00,https://app.lcm-client.com/belimo/matching/47012-03308/ef351458b324e0850a46407492d6d03b,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-03308
209,210,Resistors,Vishay,47012-03830,MBB02070C3830F,MBB02070C3830FRP00,https://app.lcm-client.com/belimo/matching/47012-03830/ef351458b324e0850a46407492d6eaad,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/47012-03830
210,211,Resistors,Vishay,47042,MBB02070C1503F,MBB02070C1503FRP00,https://app.lcm-client.com/belimo/matching/47042/ef351458b324e0850a46407492d86be4,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/47042
211,212,Resistors,Vishay,47355-01279,MBB02070C1279F,MBB02070C1279FRP00,https://app.lcm-client.com/belimo/matching/47355-01279/ef351458b324e0850a46407492db9a16,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01279
212,213,Resistors,Vishay,47355-01279,MRS25000C1279F,MRS25000C1279FRP00,https://app.lcm-client.com/belimo/matching/47355-01279/ef351458b324e0850a46407492dba77c,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01279
213,214,Resistors,Vishay,47355-01501,MRS25000C1501F,MRS25000C1501FRP00,https://app.lcm-client.com/belimo/matching/47355-01501/ef351458b324e0850a46407492dbc315,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01501
214,215,Resistors,Vishay,47355-01653,MRS25000C1653F,MRS25000C1653FRP00,https://app.lcm-client.com/belimo/matching/47355-01653/ef351458b324e0850a46407492dbf3fd,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01653
215,216,Resistors,Vishay,47355-02671,MRS25000C2671F,MRS25000C2671FRP00,https://app.lcm-client.com/belimo/matching/47355-02671/ef351458b324e0850a46407492dc5b8c,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-02671
216,217,Resistors,Vishay,47355-03301,MRS25000C3301F,MRS25000C3301FRP00,https://app.lcm-client.com/belimo/matching/47355-03301/ef351458b324e0850a46407492dc82bf,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-03301
217,218,Resistors,Vishay,47355-05609,MBB02070C5609F,MBB02070C5609FRP00,https://app.lcm-client.com/belimo/matching/47355-05609/ef351458b324e0850a46407492dcab28,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-05609
218,219,Resistors,Vishay,47355-05609,MRS25000C5609F,MRS25000C5609FRP00,https://app.lcm-client.com/belimo/matching/47355-05609/ef351458b324e0850a46407492dcb421,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-05609
219,220,Resistors,Vishay,47355-05762,MBB02070C5762F,MBB02070C5762FRP00,https://app.lcm-client.com/belimo/matching/47355-05762/ef351458b324e0850a46407492dcdf45,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-05762
220,221,Resistors,Vishay,40617-01800,SMM02040C1800F,SMM02040C1800FB000,https://app.lcm-client.com/belimo/matching/40617-01800/a57dd45b8b8bfbbc6b72118464e48be7,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01800
221,222,Resistors,Vishay,40617-03001,MMA02040C3001F,MMA02040C3001FB000,https://app.lcm-client.com/belimo/matching/40617-03001/a57dd45b8b8bfbbc6b72118464e73cce,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03001
222,223,Resistors,Vishay,40617-03001,SMM02040C3001F,SMM02040C3001FB000,https://app.lcm-client.com/belimo/matching/40617-03001/a57dd45b8b8bfbbc6b72118464e74406,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03001
223,224,Resistors,Vishay,40617-03008,MMA02040C3008F,MMA02040C3008FB000,https://app.lcm-client.com/belimo/matching/40617-03008/a57dd45b8b8bfbbc6b72118464e79b6e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03008
224,225,Resistors,Vishay,40617-03008,SMM02040C3008F,SMM02040C3008FB000,https://app.lcm-client.com/belimo/matching/40617-03008/a57dd45b8b8bfbbc6b72118464e7a30e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03008
225,226,Resistors,Vishay,40617-03301,MMA02040C3301F,MMA02040C3301FB000,https://app.lcm-client.com/belimo/matching/40617-03301/a57dd45b8b8bfbbc6b72118464e81354,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03301
226,227,Resistors,Vishay,40617-03301,SMM02040C3301F,SMM02040C3301FB000,https://app.lcm-client.com/belimo/matching/40617-03301/a57dd45b8b8bfbbc6b72118464e818d6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03301
227,228,Resistors,Vishay,40617-03303,MMA02040C3303F,MMA02040C3303FB000,https://app.lcm-client.com/belimo/matching/40617-03303/a57dd45b8b8bfbbc6b72118464e88cee,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03303
228,229,Resistors,Vishay,40617-03303,SMM02040C3303F,SMM02040C3303FB000,https://app.lcm-client.com/belimo/matching/40617-03303/a57dd45b8b8bfbbc6b72118464e896d0,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03303
229,230,Resistors,Vishay,40617-03901,MMA02040C3901F,MMA02040C3901FB000,https://app.lcm-client.com/belimo/matching/40617-03901/a57dd45b8b8bfbbc6b72118464e90c53,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03901
230,231,Resistors,Vishay,47001,MBB02070C1202F,MBB02070C1202FRP00,https://app.lcm-client.com/belimo/matching/47001/c8cb570d5127ae96aaae8eee665a9f99,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47001
231,232,Resistors,Vishay,47002,MBB02070C1000F,MBB02070C1000FRP00,https://app.lcm-client.com/belimo/matching/47002/c8cb570d5127ae96aaae8eee665abee6,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47002
232,233,Resistors,Vishay,47004,MBB02070C1804F,MBB02070C1804FRP00,https://app.lcm-client.com/belimo/matching/47004/c8cb570d5127ae96aaae8eee665ae642,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47004
233,234,Resistors,Vishay,47007,MBB02070C3002F,MBB02070C3002FRP00,https://app.lcm-client.com/belimo/matching/47007/c8cb570d5127ae96aaae8eee665b0d45,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47007
234,235,Resistors,Vishay,47008,MBB02070C4701F,MBB02070C4701FRP00,https://app.lcm-client.com/belimo/matching/47008/c8cb570d5127ae96aaae8eee665b34df,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47008
235,236,Resistors,Vishay,47011,MBB02070C1502F,MBB02070C1502FRP00,https://app.lcm-client.com/belimo/matching/47011/c8cb570d5127ae96aaae8eee665b5e12,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47011
236,237,Resistors,Vishay,47012-01001,MBB02070C1001F,MBB02070C1001FRP00,https://app.lcm-client.com/belimo/matching/47012-01001/c8cb570d5127ae96aaae8eee665b7c87,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47012-01001
237,238,Resistors,Vishay,47012-01001,MRS25000C1001F,MRS25000C1001FRP00,https://app.lcm-client.com/belimo/matching/47012-01001/c8cb570d5127ae96aaae8eee665b7ef3,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-01001
238,239,Resistors,Vishay,47012-02371,MBB02070C2371F,MBB02070C2371FRP00,https://app.lcm-client.com/belimo/matching/47012-02371/c8cb570d5127ae96aaae8eee665b92cf,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47012-02371
239,240,Resistors,Vishay,40602-01100,MMB02070C1100F,MMB02070C1100FB700,https://app.lcm-client.com/belimo/matching/40602-01100/ef351458b324e0850a46407492a0f34b,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01100
240,241,Resistors,Vishay,40602-02491,SMM02070C2491F,SMM02070C2491FBP00,https://app.lcm-client.com/belimo/matching/40602-02491/ef351458b324e0850a46407492a32d66,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02491
241,242,Resistors,Vishay,40602-02703,MMB02070C2703F,MMB02070C2703FB700,https://app.lcm-client.com/belimo/matching/40602-02703/ef351458b324e0850a46407492a36b57,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02703
242,243,Resistors,Vishay,40602-02703,SMM02070C2703F,SMM02070C2703FBS00,https://app.lcm-client.com/belimo/matching/40602-02703/ef351458b324e0850a46407492a3748f,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02703
243,244,Resistors,Vishay,40602-03000,MMB02070C3000F,MMB02070C3000FB700,https://app.lcm-client.com/belimo/matching/40602-03000/ef351458b324e0850a46407492a3b4b3,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-03000
244,245,Resistors,Vishay,40602-03000,SMM02070C3000F,SMM02070C3000FBS00,https://app.lcm-client.com/belimo/matching/40602-03000/ef351458b324e0850a46407492a3be47,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-03000
245,246,Resistors,Vishay,40602-03303,MMB02070C3303F,MMB02070C3303FB700,https://app.lcm-client.com/belimo/matching/40602-03303/ef351458b324e0850a46407492a3dded,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-03303
246,247,Resistors,Vishay,40602-03303,SMM02070C3303F,SMM02070C3303FBS00,https://app.lcm-client.com/belimo/matching/40602-03303/ef351458b324e0850a46407492a3e67a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-03303
247,248,Resistors,Vishay,40602-04700,MMB02070C4700F,MMB02070C4700FB700,https://app.lcm-client.com/belimo/matching/40602-04700/ef351458b324e0850a46407492a51eab,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04700
248,249,Resistors,Vishay,40602-04700,SMM02070C4700F,SMM02070C4700FBP00,https://app.lcm-client.com/belimo/matching/40602-04700/ef351458b324e0850a46407492a52341,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04700
249,250,Resistors,Vishay,40617-01108,MMA02040C1108F,MMA02040C1108FB000,https://app.lcm-client.com/belimo/matching/40617-01108/ef351458b324e0850a46407492bb453c,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01108
250,251,Resistors,Vishay,40617-02002,SMM02040C2002F,SMM02040C2002FB000,https://app.lcm-client.com/belimo/matching/40617-02002/ef351458b324e0850a46407492bed203,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02002
251,252,Resistors,Vishay,40617-02008,MMA02040C2008F,MMA02040C2008FB000,https://app.lcm-client.com/belimo/matching/40617-02008/ef351458b324e0850a46407492bf3690,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02008
252,253,Resistors,Vishay,40617-02008,SMM02040C2008F,SMM02040C2008FB000,https://app.lcm-client.com/belimo/matching/40617-02008/ef351458b324e0850a46407492bf3890,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02008
253,254,Resistors,Vishay,40617-02201,MMA02040C2001F,MMA02040C2001FB000,https://app.lcm-client.com/belimo/matching/40617-02201/ef351458b324e0850a46407492bfa0e4,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02201
254,255,Resistors,Vishay,40617-02201,SMM02040C2201F,SMM02040C2201FB000,https://app.lcm-client.com/belimo/matching/40617-02201/ef351458b324e0850a46407492bfaa90,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02201
255,256,Resistors,Vishay,40617-02202,SMM02040C2202F,SMM02040C2202FB000,https://app.lcm-client.com/belimo/matching/40617-02202/ef351458b324e0850a46407492c02755,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02202
256,257,Resistors,Vishay,40617-02402,MMA02040C2402F,MMA02040C2402FB000,https://app.lcm-client.com/belimo/matching/40617-02402/ef351458b324e0850a46407492c086bf,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02402
257,258,Resistors,Vishay,40617-02402,SMM02040C2402F,SMM02040C2402FB000,https://app.lcm-client.com/belimo/matching/40617-02402/ef351458b324e0850a46407492c09313,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02402
258,259,Resistors,Vishay,40617-02408,MMA02040C2408F,MMA02040C2408FB000,https://app.lcm-client.com/belimo/matching/40617-02408/ef351458b324e0850a46407492c0cc99,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02408
259,260,Resistors,Vishay,40862,MBB02070C2203F,MBB02070C2203FRP00,https://app.lcm-client.com/belimo/matching/40862/ef351458b324e0850a46407492c74003,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40862
260,261,Resistors,Vishay,40898,MRS25000C1102F,MRS25000C1102FRP00,https://app.lcm-client.com/belimo/matching/40898/ef351458b324e0850a46407492c879f0,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40898
261,262,Resistors,Vishay,40901,MBB02070C4992F,MBB02070C4992FRP00,https://app.lcm-client.com/belimo/matching/40901/ef351458b324e0850a46407492c8980e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40901
262,263,Resistors,Vishay,40901,MRS25000C4992F,MRS25000C4992FRP00,https://app.lcm-client.com/belimo/matching/40901/ef351458b324e0850a46407492c8a5f3,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40901
263,264,Resistors,Vishay,40913,MBB02070C2201F,MBB02070C2201FRP00,https://app.lcm-client.com/belimo/matching/40913/ef351458b324e0850a46407492c8cd11,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40913
264,265,Resistors,Vishay,40913,MRS25000C2201F,MRS25000C2201FRP00,https://app.lcm-client.com/belimo/matching/40913/ef351458b324e0850a46407492c8ced5,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40913
265,266,Resistors,Vishay,40915,MRS25000C6802F,MRS25000C6802FRP00,https://app.lcm-client.com/belimo/matching/40915/ef351458b324e0850a46407492c8f08b,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40915
266,267,Resistors,Vishay,40919,MRS25000C8201F,MRS25000C8201FRP00,https://app.lcm-client.com/belimo/matching/40919/ef351458b324e0850a46407492c91498,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40919
267,268,Resistors,Vishay,40924,MBB02070C1002F,MBB02070C1002FRP00,https://app.lcm-client.com/belimo/matching/40924/ef351458b324e0850a46407492c95e69,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40924
268,269,Resistors,Vishay,40924,MRS25000C1002F,MRS25000C1002FRP00,https://app.lcm-client.com/belimo/matching/40924/ef351458b324e0850a46407492c9667f,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40924
269,270,Resistors,Vishay,41861-01003,MCS04020D1003B,MCS04020D1003BE500,https://app.lcm-client.com/belimo/matching/41861-01003/ef351458b324e0850a46407492ccbe77,ok,Medical,Exption,n,,https://app.lcm-client.com/belimo/part/41861-01003
270,271,Resistors,Vishay,47012-03830,MRS25000C3830F,MRS25000C3830FRP00,https://app.lcm-client.com/belimo/matching/47012-03830/ef351458b324e0850a46407492d6f482,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-03830
271,272,Resistors,Vishay,47012-04531,MRS25000C4531F,MRS25000C4531FRP00,https://app.lcm-client.com/belimo/matching/47012-04531/ef351458b324e0850a46407492d71357,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-04531
272,273,Resistors,Vishay,47012-06192,MBB02070C6192F,MBB02070C6192FRP00,https://app.lcm-client.com/belimo/matching/47012-06192/ef351458b324e0850a46407492d72930,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47012-06192
273,274,Resistors,Vishay,47012-06192,MRS25000C6192F,MRS25000C6192FRP00,https://app.lcm-client.com/belimo/matching/47012-06192/ef351458b324e0850a46407492d735ec,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47012-06192
274,275,Resistors,Vishay,47013,MBB02070C5600F,MBB02070C5600FRP00,https://app.lcm-client.com/belimo/matching/47013/ef351458b324e0850a46407492d77c2d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47013
275,276,Resistors,Vishay,47016,MBB02070C2102F,MBB02070C2102FRP00,https://app.lcm-client.com/belimo/matching/47016/ef351458b324e0850a46407492d79a35,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47016
276,277,Resistors,Vishay,47017,MBB02070C2802F,MBB02070C2802FRP00,https://app.lcm-client.com/belimo/matching/47017/ef351458b324e0850a46407492d7bc7e,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47017
277,278,Resistors,Vishay,47030,MBB02070C1004F,MBB02070C1004FRP00,https://app.lcm-client.com/belimo/matching/47030/ef351458b324e0850a46407492d7ea45,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47030
278,279,Resistors,Vishay,47035,MBB02070C1802F,MBB02070C1802FRP00,https://app.lcm-client.com/belimo/matching/47035/ef351458b324e0850a46407492d82ea5,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47035
279,280,Resistors,Vishay,47355-01208,MRS25000C1208F,MRS25000C1208FRP00,https://app.lcm-client.com/belimo/matching/47355-01208/a57dd45b8b8bfbbc6b72118464fc8178,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01208
280,281,Resistors,Vishay,47355-01209,MBB02070C1209F,MBB02070C1209FRP00,https://app.lcm-client.com/belimo/matching/47355-01209/a57dd45b8b8bfbbc6b72118464fca02d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01209
281,282,Resistors,Vishay,47355-01209,MRS25000C1209F,MRS25000C1209FRP00,https://app.lcm-client.com/belimo/matching/47355-01209/a57dd45b8b8bfbbc6b72118464fcacd1,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-01209
282,283,Resistors,Vishay,40617-01001,MMA02040C1001F,MMA02040C1001FB000,https://app.lcm-client.com/belimo/matching/40617-01001/c8cb570d5127ae96aaae8eee66425d73,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01001
283,284,Resistors,Vishay,40617-01001,SMM02040C1001F,SMM02040C1001FB000,https://app.lcm-client.com/belimo/matching/40617-01001/c8cb570d5127ae96aaae8eee664273bd,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01001
284,285,Resistors,Vishay,40617-04701,MMA02040C4701F,MMA02040C4701FB000,https://app.lcm-client.com/belimo/matching/40617-04701/c8cb570d5127ae96aaae8eee66480626,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04701
285,286,Resistors,Vishay,40617-04701,SMM02040C4701F,SMM02040C4701FB000,https://app.lcm-client.com/belimo/matching/40617-04701/c8cb570d5127ae96aaae8eee66480c80,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04701
286,287,Resistors,Vishay,40617-04708,MMA02040C4708F,MMA02040C4708FB000,https://app.lcm-client.com/belimo/matching/40617-04708/c8cb570d5127ae96aaae8eee66486f7f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04708
287,288,Resistors,Vishay,40617-04708,SMM02040C4708F,SMM02040C4708FB000,https://app.lcm-client.com/belimo/matching/40617-04708/c8cb570d5127ae96aaae8eee6648785d,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04708
288,289,Resistors,Vishay,40617-04992,MMA02040C4992F,MMA02040C4992FB000,https://app.lcm-client.com/belimo/matching/40617-04992/c8cb570d5127ae96aaae8eee6648d911,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04992
289,290,Resistors,Vishay,40602-04701,MMB02070C4701F,MMB02070C4701FB700,https://app.lcm-client.com/belimo/matching/40602-04701/ef351458b324e0850a46407492a55a67,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04701
290,291,Resistors,Vishay,40602-09100,SMM02070C9100F,SMM02070C9100FBS00,https://app.lcm-client.com/belimo/matching/40602-09100/ef351458b324e0850a46407492a7a870,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-09100
291,292,Resistors,Vishay,40617-01002,MMA02040C1002F,MMA02040C1002FB000,https://app.lcm-client.com/belimo/matching/40617-01002/ef351458b324e0850a46407492b97ffb,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01002
292,293,Resistors,Vishay,40617-01002,SMM02040C1002F,SMM02040C1002FB000,https://app.lcm-client.com/belimo/matching/40617-01002/ef351458b324e0850a46407492b98f3c,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01002
293,294,Resistors,Vishay,40617-01003,MMA02040C1003F,MMA02040C1003FB000,https://app.lcm-client.com/belimo/matching/40617-01003/ef351458b324e0850a46407492b9d7bd,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01003
294,295,Resistors,Vishay,40617-01003,SMM02040C1003F,SMM02040C1003FB000,https://app.lcm-client.com/belimo/matching/40617-01003/ef351458b324e0850a46407492b9e217,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01003
295,296,Resistors,Vishay,40617-01008,MMA02040C1008F,MMA02040C1008FB000,https://app.lcm-client.com/belimo/matching/40617-01008/ef351458b324e0850a46407492ba4463,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01008
296,297,Resistors,Vishay,40617-01008,SMM02040C1008F,SMM02040C1008FB000,https://app.lcm-client.com/belimo/matching/40617-01008/ef351458b324e0850a46407492ba493f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01008
297,298,Resistors,Vishay,40617-01009,MMA02040C1009F,MMA02040C1009FB000,https://app.lcm-client.com/belimo/matching/40617-01009/ef351458b324e0850a46407492baaa84,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01009
298,299,Resistors,Vishay,40617-01009,SMM02040C1009F,SMM02040C1009FB000,https://app.lcm-client.com/belimo/matching/40617-01009/ef351458b324e0850a46407492bab791,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01009
299,300,Resistors,Vishay,40926,MBB02070C8202F,MBB02070C8202FRP00,https://app.lcm-client.com/belimo/matching/40926/ef351458b324e0850a46407492c97f9f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40926
300,301,Resistors,Vishay,41749-06800,CMB02070X6800G,CMB02070X6800GB700,https://app.lcm-client.com/belimo/matching/41749-06800/ef351458b324e0850a46407492cb3c37,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/41749-06800
301,302,Resistors,Vishay,41770-02401,CRCW12182K40FK,CRCW12182K40FKEK,https://app.lcm-client.com/belimo/matching/41770-02401/ef351458b324e0850a46407492cb4b4c,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41770-02401
302,303,Resistors,Vishay,41770-02401,RCL12182K40FK,RCL12182K40FKEK,https://app.lcm-client.com/belimo/matching/41770-02401/ef351458b324e0850a46407492cb5a01,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41770-02401
303,304,Resistors,Vishay,41770-02709,CRCW121827R0FK,CRCW121827R0FKEK,https://app.lcm-client.com/belimo/matching/41770-02709/ef351458b324e0850a46407492cb724c,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41770-02709
304,305,Resistors,Vishay,41770-02709,RCL121827R0FK,RCL121827R0FKEK,https://app.lcm-client.com/belimo/matching/41770-02709/ef351458b324e0850a46407492cb7c46,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41770-02709
305,306,Resistors,Vishay,41770-09100,CRCW1218910RFK,CRCW1218910RFKEK,https://app.lcm-client.com/belimo/matching/41770-09100/ef351458b324e0850a46407492cb859c,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41770-09100
306,307,Resistors,Vishay,41770-09100,RCL1218910RFK,RCL1218910RFKEK,https://app.lcm-client.com/belimo/matching/41770-09100/ef351458b324e0850a46407492cb8df7,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41770-09100
307,308,Resistors,Vishay,41807-08208,CRCW25128R20JN,CRCW25128R20JNEG,https://app.lcm-client.com/belimo/matching/41807-08208/ef351458b324e0850a46407492cc6d55,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41807-08208
308,309,Resistors,Vishay,41857-04700,CMA02040X4700G,CMA02040X4700GB300,https://app.lcm-client.com/belimo/matching/41857-04700/ef351458b324e0850a46407492cc8de1,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/41857-04700
309,310,Resistors,Vishay,40550,MBB0207IC1203F,MBB0207IC1203FRP00,https://app.lcm-client.com/belimo/matching/40550/ef351458b324e0850a464074929fa8a6,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40550
310,311,Resistors,Vishay,40550,MRS25000C1203F,MRS25000C1203FRP00,https://app.lcm-client.com/belimo/matching/40550/ef351458b324e0850a464074929faa94,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40550
311,312,Resistors,Vishay,40602-01001,MMB02070C1001F,MMB02070C1001FB700,https://app.lcm-client.com/belimo/matching/40602-01001/ef351458b324e0850a464074929fd84b,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01001
312,313,Resistors,Vishay,40602-01001,SMM02070C1001F,SMM02070C1001FBS00,https://app.lcm-client.com/belimo/matching/40602-01001/ef351458b324e0850a464074929fe654,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01001
313,314,Resistors,Vishay,40602-01002,MMB02070C1002F,MMB02070C1002FB700,https://app.lcm-client.com/belimo/matching/40602-01002/ef351458b324e0850a46407492a00ad0,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01002
314,315,Resistors,Vishay,40602-01002,SMM02070C1002F,SMM02070C1002FBS00,https://app.lcm-client.com/belimo/matching/40602-01002/ef351458b324e0850a46407492a00ede,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01002
315,316,Resistors,Vishay,40602-01004,MMB02070C1004F,MMB02070C1004FB700,https://app.lcm-client.com/belimo/matching/40602-01004/ef351458b324e0850a46407492a03473,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01004
316,317,Resistors,Vishay,40602-01004,SMM02070C1004F,SMM02070C1004FBS00,https://app.lcm-client.com/belimo/matching/40602-01004/ef351458b324e0850a46407492a03d9c,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01004
317,318,Resistors,Vishay,40861,MBB02070C2202F,MBB02070C2202FRP00,https://app.lcm-client.com/belimo/matching/40861/ef351458b324e0850a46407492c733f0,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40861
318,319,Resistors,Vishay,40861,MRS25000C2202F,MRS25000C2202FRP00,https://app.lcm-client.com/belimo/matching/40861/ef351458b324e0850a46407492c73735,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40861
319,320,Resistors,Vishay,47038,MBB02070C1103F,MBB02070C1103FRP00,https://app.lcm-client.com/belimo/matching/47038/ef351458b324e0850a46407492d84967,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47038
320,321,Resistors,Vishay,47355-05762,MRS25000C5762F,MRS25000C5762FRP00,https://app.lcm-client.com/belimo/matching/47355-05762/ef351458b324e0850a46407492dceb65,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-05762
321,322,Resistors,Vishay,47355-07503,MBB02070C7503F,MBB02070C7503FRP00,https://app.lcm-client.com/belimo/matching/47355-07503/ef351458b324e0850a46407492dd0a2c,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-07503
322,323,Resistors,Vishay,47355-07503,MRS25000C7503F,MRS25000C7503FRP00,https://app.lcm-client.com/belimo/matching/47355-07503/ef351458b324e0850a46407492dd1062,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-07503
323,324,Resistors,Vishay,47355-09102,MBB02070C9102F,MBB02070C9102FRP00,https://app.lcm-client.com/belimo/matching/47355-09102/ef351458b324e0850a46407492dd3bb8,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-09102
324,325,Resistors,Vishay,47355-09102,MRS25000C9102F,MRS25000C9102FRP00,https://app.lcm-client.com/belimo/matching/47355-09102/ef351458b324e0850a46407492dd4037,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-09102
325,326,Resistors,Vishay,47355-42200,MBB02070C2200F,MBB02070C2200FRP00,https://app.lcm-client.com/belimo/matching/47355-42200/ef351458b324e0850a46407492dd65ba,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/47355-42200
326,327,Resistors,Vishay,47355-42200,MRS25000C2200F,MRS25000C2200FRP00,https://app.lcm-client.com/belimo/matching/47355-42200/ef351458b324e0850a46407492dd696b,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-42200
327,328,Resistors,Vishay,40617-02408,SMM02040C2408F,SMM02040C2408FB000,https://app.lcm-client.com/belimo/matching/40617-02408/ef351458b324e0850a46407492c0d2b0,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02408
328,329,Resistors,Vishay,40852,MBB02070C4702F,MBB02070C4702FRP00,https://app.lcm-client.com/belimo/matching/40852/ef351458b324e0850a46407492c6d60f,ok,Medical,Yes,n,,https://app.lcm-client.com/belimo/part/40852
329,330,Resistors,Vishay,40852,MRS25000C4702F,MRS25000C4702FRP00,https://app.lcm-client.com/belimo/matching/40852/ef351458b324e0850a46407492c6e1c7,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40852
330,331,Resistors,Vishay,40853,MBB02070C5902F,MBB02070C5902FRP00,https://app.lcm-client.com/belimo/matching/40853/ef351458b324e0850a46407492c703d9,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40853
331,332,Resistors,Vishay,40853,MRS25000C5902F,MRS25000C5902FRP00,https://app.lcm-client.com/belimo/matching/40853/ef351458b324e0850a46407492c70733,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40853
332,333,Resistors,Vishay,40860,MBB02070C3001F,MBB02070C3001FRP00,https://app.lcm-client.com/belimo/matching/40860/ef351458b324e0850a46407492c71d0c,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40860
333,334,Resistors,Vishay,40860,MRS25000C3001F,MRS25000C3001FRP00,https://app.lcm-client.com/belimo/matching/40860/ef351458b324e0850a46407492c72721,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40860
334,335,Resistors,Vishay,47355-44700,MRS25000C4700F,MRS25000C4700FRP00,https://app.lcm-client.com/belimo/matching/47355-44700/ef351458b324e0850a46407492dd925e,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/47355-44700
335,336,Resistors,TT Electronics,40617-01204,WRM0204C1M2FI,WRM0204C-1M2FI,https://app.lcm-client.com/belimo/matching/40617-01204/a57dd45b8b8bfbbc6b72118464e1e61b,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01204
336,337,Resistors,TT Electronics,40617-01211,WRM0204C1K21FI,WRM0204C-470RFI,https://app.lcm-client.com/belimo/matching/40617-01211/a57dd45b8b8bfbbc6b72118464e2c13b,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01211
337,338,Resistors,TT Electronics,40617-01800,WRM0204C180RFI,WRM0204C180RFI,https://app.lcm-client.com/belimo/matching/40617-01800/a57dd45b8b8bfbbc6b72118464e475a3,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01800
338,339,Resistors,TT Electronics,40617-01801,WRM0204C1K8FI,WRM0204C-1K8FI,https://app.lcm-client.com/belimo/matching/40617-01801/a57dd45b8b8bfbbc6b72118464e4ef28,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01801
339,340,Resistors,TT Electronics,40617-03303,WRM0204C330KFI,WRM0204C-330KFI,https://app.lcm-client.com/belimo/matching/40617-03303/a57dd45b8b8bfbbc6b72118464e87aed,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-03303
340,341,Resistors,TT Electronics,40617-04700,WRM0204C470RFI,WRM0204C-470RFI,https://app.lcm-client.com/belimo/matching/40617-04700/a57dd45b8b8bfbbc6b72118464ea09cb,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04700
341,342,Resistors,TT Electronics,40615-02002,PCF1206-R-20KB,PCF1206R-20KBT1 ,https://app.lcm-client.com/belimo/matching/40615-02002/c8cb570d5127ae96aaae8eee663f84a2,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02002
342,343,Resistors,TT Electronics,40615-02202,PCF1206-R-22KB,PCF1206R-22KBT1,https://app.lcm-client.com/belimo/matching/40615-02202/c8cb570d5127ae96aaae8eee663fadb4,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02202
343,344,Resistors,TT Electronics,40615-02372,PCF1206-R-56KB,PCF1206R-56KBT1,https://app.lcm-client.com/belimo/matching/40615-02202/c8cb570d5127ae96aaae8eee663fadb4,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02372
344,345,Resistors,TT Electronics,40615-02402,PCF1206-R-24KB,PCF1206R-24KBT1,https://app.lcm-client.com/belimo/matching/40615-02402/c8cb570d5127ae96aaae8eee664021c3,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02402
345,346,Resistors,TT Electronics,40615-02492,PCF1206-R-24K9B,PCF1206R-24K9BT1,https://app.lcm-client.com/belimo/matching/40615-02492/c8cb570d5127ae96aaae8eee66405af8,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02492
346,347,Resistors,TT Electronics,40615-02552,PCF1206-R-25K5B,PCF1206R-25K5BT1,https://app.lcm-client.com/belimo/matching/40615-02552/c8cb570d5127ae96aaae8eee664087ff,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02552
347,348,Resistors,TT Electronics,40615-02702,PCF1206-R-27KB,PCF1206R-27KBT1,https://app.lcm-client.com/belimo/matching/40615-02702/c8cb570d5127ae96aaae8eee6640c2eb,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-02702
348,349,Resistors,TT Electronics,40615-03922,PCF1206-R-39K2B,PCF1206R-39K2BT1,https://app.lcm-client.com/belimo/matching/40615-03922/c8cb570d5127ae96aaae8eee6640ff82,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-03922
349,350,Resistors,TT Electronics,40615-06812,PCF1206-R-68K1B,PCF1206R-68K1BT1,https://app.lcm-client.com/belimo/matching/40615-06812/c8cb570d5127ae96aaae8eee6641618e,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-06812
350,351,Resistors,TT Electronics,40615-06982,PCF1206-R-69K8B,PCF1206R-69K8BT1,https://app.lcm-client.com/belimo/matching/40615-06982/c8cb570d5127ae96aaae8eee66419452,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-06982
351,352,Resistors,TT Electronics,40615-08201,PCF1206-R-8K2B,PCF1206R-8K2BT1,https://app.lcm-client.com/belimo/matching/40615-08201/c8cb570d5127ae96aaae8eee6641c3da,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-08201
352,353,Resistors,TT Electronics,40617-01001,WRM0204C1KFI,WRM0204C-1K0FI,https://app.lcm-client.com/belimo/matching/40617-01001/c8cb570d5127ae96aaae8eee66425552,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01001
353,354,Resistors,TT Electronics,40617-04701,WRM0204C4K7FI,WRM0204C-4K7FI,https://app.lcm-client.com/belimo/matching/40617-04701/c8cb570d5127ae96aaae8eee6647ff02,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04701
354,355,Resistors,TT Electronics,40617-04992,WRM0204C49K9FI,WRM0204C-49K9FI,https://app.lcm-client.com/belimo/matching/40617-04992/c8cb570d5127ae96aaae8eee6648bd7f,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-04992
355,356,Resistors,TT Electronics,40617-05109,WRM0204C51RFI,WRM0204C-51RFI,https://app.lcm-client.com/belimo/matching/40617-05109/c8cb570d5127ae96aaae8eee664944ae,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-05109
356,357,Resistors,TT Electronics,40617-05601,WRM0204C5K6FI,WRM0204C-5K6FI,https://app.lcm-client.com/belimo/matching/40617-05601/c8cb570d5127ae96aaae8eee6649b46b,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-05601
357,358,Resistors,TT Electronics,40617-06800,WRM0204C680RFI,WRM0204C-680RFI,https://app.lcm-client.com/belimo/matching/40617-06800/c8cb570d5127ae96aaae8eee664a97c6,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06800
358,359,Resistors,TT Electronics,40617-06801,WRM0204C6K8FI,WRM0204C-6K8FI,https://app.lcm-client.com/belimo/matching/40617-06801/c8cb570d5127ae96aaae8eee664b8a2f,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-06801
359,360,Resistors,TT Electronics,40617-07502,WRM0204C75KFI,WRM0204C-75KFI,https://app.lcm-client.com/belimo/matching/40617-07502/c8cb570d5127ae96aaae8eee664c65a4,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-07502
360,361,Resistors,TT Electronics,40602-01001,WRM0207HPC-1K0F,WRM0207HPC-1K0FT2,https://app.lcm-client.com/belimo/matching/40602-01001/ef351458b324e0850a464074929fc757,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01001
361,362,Resistors,TT Electronics,40602-01002,WRM0207HPC-10KF,WRM0207HPC-10KFT2,https://app.lcm-client.com/belimo/matching/40602-01002/ef351458b324e0850a46407492a0014a,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01002
362,363,Resistors,TT Electronics,40602-01004,WRM0207HPC-1M0F,WRM0207HPC-1M0FT2,https://app.lcm-client.com/belimo/matching/40602-01004/ef351458b324e0850a46407492a0258e,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01004
363,364,Resistors,TT Electronics,40602-01100,WRM0207HPC-110RF,WRM0207HPC-110RFT2,https://app.lcm-client.com/belimo/matching/40602-01100/ef351458b324e0850a46407492a0d9d9,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01100
364,365,Resistors,TT Electronics,40602-01501,WRM0207HPC-1K5F,WRM0207HPC-1K5FT2,https://app.lcm-client.com/belimo/matching/40602-01501/ef351458b324e0850a46407492a118c9,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01501
365,366,Resistors,TT Electronics,40602-01503,WRM0207HPC-150KF,WRM0207HPC-150KFT2,https://app.lcm-client.com/belimo/matching/40602-01503/ef351458b324e0850a46407492a15498,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-01503
366,367,Resistors,TT Electronics,40602-01801,WRM0207HPC-1K8F,WRM0207HPC-1K8FT2,https://app.lcm-client.com/belimo/matching/40602-01801/ef351458b324e0850a46407492a19513,ok,Automotive,Yes,y,Requires Update,https://app.lcm-client.com/belimo/part/40602-01801
367,368,Resistors,TT Electronics,40602-02201,WRM0207HPC-2K2F,WRM0207HPC-2K2FT2,https://app.lcm-client.com/belimo/matching/40602-02201/ef351458b324e0850a46407492a1c7a2,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02201
368,369,Resistors,TT Electronics,40602-02203,WRM0207HPC-220KF,WRM0207HPC-220KFT2,https://app.lcm-client.com/belimo/matching/40602-02203/ef351458b324e0850a46407492a208f7,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02203
369,370,Resistors,TT Electronics,40602-02401,WRM0207HPC-2K4F,WRM0207HPC-2K4FT2,https://app.lcm-client.com/belimo/matching/40602-02401/ef351458b324e0850a46407492a27710,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02401
370,371,Resistors,TT Electronics,40602-02402,WRM0207HPC-24KF,WRM0207HPC-24KFT2,https://app.lcm-client.com/belimo/matching/40602-02402/ef351458b324e0850a46407492a2b96e,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02402
371,372,Resistors,TT Electronics,40602-02403,WRM0207HPC-240KF,WRM0207HPC-240KFT2,https://app.lcm-client.com/belimo/matching/40602-02403/ef351458b324e0850a46407492a2ea6d,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02403
372,373,Resistors,TT Electronics,40602-02491,WRM0207HPC-2K49F,WRM0207HPC-2K49FT2,https://app.lcm-client.com/belimo/matching/40602-02491/ef351458b324e0850a46407492a30f58,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02491
373,374,Resistors,TT Electronics,40602-02703,WRM0207HPC-270KF,WRM0207HPC-270KFT2,https://app.lcm-client.com/belimo/matching/40602-02703/ef351458b324e0850a46407492a35ee4,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-02703
374,375,Resistors,TT Electronics,40602-03000,WRM0207HPC-300RF,WRM0207HPC-300RFT2,https://app.lcm-client.com/belimo/matching/40602-03000/ef351458b324e0850a46407492a39ce1,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-03000
375,376,Resistors,TT Electronics,40602-03303,WRM0207HPC-330KF,WRM0207HPC-330KFT2,https://app.lcm-client.com/belimo/matching/40602-03303/ef351458b324e0850a46407492a3cdcf,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-03303
376,377,Resistors,TT Electronics,40602-04700,WRM0207HPC-470RF,WRM0207HPC-470RFT2,https://app.lcm-client.com/belimo/matching/40602-04700/ef351458b324e0850a46407492a51cfd,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04700
377,378,Resistors,TT Electronics,40602-04701,WRM0207HPC-4K7F,WRM0207HPC-4K7FT2,https://app.lcm-client.com/belimo/matching/40602-04701/ef351458b324e0850a46407492a54e73,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04701
378,379,Resistors,TT Electronics,40602-04702,WRM0207HPC-47KF,WRM0207HPC-47KFT2,https://app.lcm-client.com/belimo/matching/40602-04702/ef351458b324e0850a46407492a58a5c,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04702
379,380,Resistors,TT Electronics,40602-04703,WRM0207HPC-470KF,WRM0207HPC-470KFT2,https://app.lcm-client.com/belimo/matching/40602-04703/ef351458b324e0850a46407492a5b923,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-04703
380,381,Resistors,TT Electronics,40602-05100,WRM0207HPC-510RF,WRM0207HPC-510RFT2,https://app.lcm-client.com/belimo/matching/40602-05100/ef351458b324e0850a46407492a6084d,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05100
381,382,Resistors,TT Electronics,40602-05603,WRM0207HPC-560KF,WRM0207HPC-560KFT2,https://app.lcm-client.com/belimo/matching/40602-05603/ef351458b324e0850a46407492a64c72,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-05603
382,383,Resistors,TT Electronics,40602-06209,WRM0207HPC-62RF,WRM0207HPC-62RFT2,https://app.lcm-client.com/belimo/matching/40602-06209/ef351458b324e0850a46407492a68b65,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-06209
383,384,Resistors,TT Electronics,40602-07502,WRM0207HPC-75KF,WRM0207HPC-75KFT2,https://app.lcm-client.com/belimo/matching/40602-07502/ef351458b324e0850a46407492a6d6ab,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-07502
384,385,Resistors,TT Electronics,40602-08063,WRM0207HPC-806KF,WRM0207HPC-806KFT2,https://app.lcm-client.com/belimo/matching/40602-08063/ef351458b324e0850a46407492a71c92,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08063
385,386,Resistors,TT Electronics,40602-08202,WRM0207HPC-82KF,WRM0207HPC-82KFT2,https://app.lcm-client.com/belimo/matching/40602-08202/ef351458b324e0850a46407492a75ccf,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-08202
386,387,Resistors,TT Electronics,40602-09100,WRM0207HPC-910RF,WRM0207HPC-910RFT2,https://app.lcm-client.com/belimo/matching/40602-09100/ef351458b324e0850a46407492a79fec,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/40602-09100
387,388,Resistors,TT Electronics,40615-01002,PCF1206-R-10KB,PCF1206R-10KBT1,https://app.lcm-client.com/belimo/matching/40615-01002/ef351458b324e0850a46407492b6a626,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-01002
388,389,Resistors,TT Electronics,40615-01022,PCF1206-R-10K2B,PCF1206R-10K2BT1,https://app.lcm-client.com/belimo/matching/40615-01022/ef351458b324e0850a46407492b6e25d,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-01022
389,390,Resistors,TT Electronics,40615-01213,PCF1206-R-121KB,PCF1206R-121KBT1,https://app.lcm-client.com/belimo/matching/40615-01213/ef351458b324e0850a46407492b72657,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-01213
390,391,Resistors,TT Electronics,40615-01822,PCF1206-R-18K2B,PCF1206R-18K2BT1,https://app.lcm-client.com/belimo/matching/40615-01822/ef351458b324e0850a46407492b751d0,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40615-01822
391,392,Resistors,TT Electronics,40617-01002,WRM0204C10KFI,WRM0204C-10KFI,https://app.lcm-client.com/belimo/matching/40617-01002/ef351458b324e0850a46407492b965cd,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01002
392,393,Resistors,TT Electronics,40617-01003,WRM0204C100KFI,WRM0204C-100KFI,https://app.lcm-client.com/belimo/matching/40617-01003/ef351458b324e0850a46407492b9d08e,ok,STD,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01003
393,394,Resistors,TT Electronics,40617-01108,WRM0204C1R1FI,WRM0204C-1R1FI,https://app.lcm-client.com/belimo/matching/40617-01108/ef351458b324e0850a46407492bb284b,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01108
394,395,Resistors,TT Electronics,40617-01201,WRM0204C1K2FI,WRM0204C-1K2FI,https://app.lcm-client.com/belimo/matching/40617-01201/ef351458b324e0850a46407492bb9190,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01201
395,396,Resistors,TT Electronics,40617-01202,WRM0204C12KFI,WRM0204C-12KFI,https://app.lcm-client.com/belimo/matching/40617-01202/ef351458b324e0850a46407492bbe280,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-01202
396,397,Resistors,TT Electronics,40617-02002,WRM0204C20KFI,WRM0204C-20KFI,https://app.lcm-client.com/belimo/matching/40617-02002/ef351458b324e0850a46407492beb216,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02002
397,398,Resistors,TT Electronics,40617-02201,WRM0204C2K2FI,WRM0204C-2K2FI,https://app.lcm-client.com/belimo/matching/40617-02201/ef351458b324e0850a46407492bf96d3,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02201
398,399,Resistors,TT Electronics,40617-02202,WRM0204C22KFI,WRM0204C-22KFI,https://app.lcm-client.com/belimo/matching/40617-02202/ef351458b324e0850a46407492c0070f,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02202
399,400,Resistors,TT Electronics,40617-02402,WRM0204C24KFI,WRM0204C-24KFI,https://app.lcm-client.com/belimo/matching/40617-02402/ef351458b324e0850a46407492c077bb,ok,,Yes,n,,https://app.lcm-client.com/belimo/part/40617-02402
400,401,Resistors,TT Electronics,41746-02007,LR2512-R20F,LR2512-R20FT1,https://app.lcm-client.com/belimo/matching/41746-02007/ef351458b324e0850a46407492cb1266,ok,Automotive,Exption,n,,https://app.lcm-client.com/belimo/part/41746-02007
401,402,Resistors,TT Electronics,41801-00057,LRMAP2512-R005F,LRMAP2512-R005FT4,https://app.lcm-client.com/belimo/matching/41801-00057/ef351458b324e0850a46407492cc617c,ok,Automotive,Yes,n,,https://app.lcm-client.com/belimo/part/41801-00057
402,403,Resistors,TT Electronics,41808-01008,CHP1/8501R00J,CHP1/8501R00JLF,https://app.lcm-client.com/belimo/matching/41808-01008/ef351458b324e0850a46407492cc74b7,ok,STD,Yes,y,Obsolete,https://app.lcm-client.com/belimo/part/41808-01008
403,404,Resistors,Panasonic,41911-03001,ERJ2RKF3001,ERJ2RKF3001X,https://app.lcm-client.com/belimo/matching/41911-03001/01c0aaf7f54e36ff3a021a81ca303251,ok,Automotive,Exption,n,,
404,405,Resistors,Panasonic,41911-03301,ERJ2RKF3301,ERJ2RKF3301X,https://app.lcm-client.com/belimo/matching/41911-03301/01c0aaf7f54e36ff3a021a81ca30648f,ok,Automotive,Exption,n,,
405,406,Resistors,Panasonic,41911-05600,ERJ2RKF5600,ERJ2RKF5600X,https://app.lcm-client.com/belimo/matching/41911-05600/215374c1de05d3324b68f967dc5023c8,ok,Automotive,Exption,n,,
406,407,Resistors,Panasonic,41911-07502,ERJ2RKF7502,ERJ2RKF7502X,https://app.lcm-client.com/belimo/matching/41911-07502/215374c1de05d3324b68f967dc50b5a8,ok,Automotive,Exption,n,,
407,408,Resistors,Panasonic,41911-08203,ERJ2RKF8203,ERJ2RKF8203X,https://app.lcm-client.com/belimo/matching/41911-08203/215374c1de05d3324b68f967dc50e5fb,ok,Automotive,Exption,n,,
408,409,Resistors,Panasonic,41911-01103,ERJ2RKF1103,ERJ2RKF1103X,https://app.lcm-client.com/belimo/matching/41911-01103/46de94ed90f9f5ccd2b17e508cfa275c,ok,Automotive,Exption,n,,
409,410,Resistors,Panasonic,41911-01200,ERJ2RKF1200,ERJ2RKF1200X,https://app.lcm-client.com/belimo/matching/41911-01200/46de94ed90f9f5ccd2b17e508cfa4588,ok,Automotive,Exption,n,,
410,411,Resistors,Panasonic,41911-01302,ERJ2RKF1302,ERJ2RKF1302X,https://app.lcm-client.com/belimo/matching/41911-01302/46de94ed90f9f5ccd2b17e508cfa5fef,ok,Automotive,Exption,n,,
411,412,Resistors,Panasonic,41911-01303,ERJ2RKF1303,ERJ2RKF1303X,https://app.lcm-client.com/belimo/matching/41911-01303/46de94ed90f9f5ccd2b17e508cfa88df,ok,Automotive,Exption,n,,
412,413,Resistors,Panasonic,40613-01001,ERA6AEB102,ERA6AEB102V,https://app.lcm-client.com/belimo/matching/40613-01001/a57dd45b8b8bfbbc6b72118464d72071,ok,Automotive,Exption,n,,
413,414,Resistors,Panasonic,40613-01002,ERA6AEB103,ERA6AEB103V,https://app.lcm-client.com/belimo/matching/40613-01002/a57dd45b8b8bfbbc6b72118464d74c0c,ok,Automotive,Exption,n,,
414,415,Resistors,Panasonic,40613-01152,ERA6AEB1153,ERA6AEB1153V,https://app.lcm-client.com/belimo/matching/40613-01152/a57dd45b8b8bfbbc6b72118464d773c4,ok,Automotive,Exption,n,,
415,416,Resistors,Panasonic,40613-01271,ERA6AEB1271,ERA6AEB1271V,https://app.lcm-client.com/belimo/matching/40613-01271/a57dd45b8b8bfbbc6b72118464d7a262,ok,Automotive,Exption,n,,
416,417,Resistors,Panasonic,40613-01502,ERA6AEB1502,ERA6AEB1502V,https://app.lcm-client.com/belimo/matching/40613-01502/a57dd45b8b8bfbbc6b72118464d7ef05,ok,Automotive,Exption,n,,
417,418,Resistors,Panasonic,40613-01503,ERA6AEB1503,ERA6AEB1503V,https://app.lcm-client.com/belimo/matching/40613-01503/a57dd45b8b8bfbbc6b72118464d802b3,ok,Automotive,Exption,n,,
418,419,Resistors,Panasonic,40613-01602,ERA6AEB163,ERA6AEB163V,https://app.lcm-client.com/belimo/matching/40613-01602/a57dd45b8b8bfbbc6b72118464d8202c,ok,Automotive,Exption,n,,
419,420,Resistors,Panasonic,40613-02001,ERA6AEB2001,ERA6AEB2001V,https://app.lcm-client.com/belimo/matching/40613-02001/a57dd45b8b8bfbbc6b72118464d85572,ok,Automotive,Exption,n,,
420,421,Resistors,Panasonic,40613-02002,ERA6AEB2002,ERA6AEB2002V,https://app.lcm-client.com/belimo/matching/40613-02002/a57dd45b8b8bfbbc6b72118464d8777d,ok,Automotive,Exption,n,,
421,422,Resistors,Panasonic,40613-02432,ERA6AEB2431,ERA6AEB2431V,https://app.lcm-client.com/belimo/matching/40613-02432/a57dd45b8b8bfbbc6b72118464d8af94,ok,Automotive,Exption,n,,
422,423,Resistors,Panasonic,40613-03321,ERA6AEB3321,ERA6AEB3321V,https://app.lcm-client.com/belimo/matching/40613-03321/a57dd45b8b8bfbbc6b72118464d8e08b,ok,Automotive,Exption,n,,
423,424,Resistors,Panasonic,40613-03601,ERA6AEB362,ERA6AEB362V,https://app.lcm-client.com/belimo/matching/40613-03601/a57dd45b8b8bfbbc6b72118464d8fefd,ok,Automotive,Exption,n,,
424,425,Resistors,Panasonic,40613-04022,ERA6AEB4022,ERA6AEB4022V,https://app.lcm-client.com/belimo/matching/40613-04022/a57dd45b8b8bfbbc6b72118464da2fbb,ok,Automotive,Exption,n,,
425,426,Resistors,Panasonic,40613-06802,ERA6AEB683,ERA6AEB683V,https://app.lcm-client.com/belimo/matching/40613-06802/a57dd45b8b8bfbbc6b72118464da4c84,ok,Automotive,Exption,n,,
426,427,Resistors,Panasonic,40613-07871,ERA6AEB7871,ERA6AEB7871V,https://app.lcm-client.com/belimo/matching/40613-07871/a57dd45b8b8bfbbc6b72118464da5af6,ok,Automotive,Exption,n,,
427,428,Resistors,Panasonic,40613-09762,ERA6AEB9762,ERA6AEB9762V,https://app.lcm-client.com/belimo/matching/40613-09762/a57dd45b8b8bfbbc6b72118464da891e,ok,Automotive,Exption,n,,
428,429,Resistors,Panasonic,41911-01003,ERJ2RKF1003,ERJ2RKF1003X,https://app.lcm-client.com/belimo/matching/41911-01003/a57dd45b8b8bfbbc6b72118464f07eb4,ok,Automotive,Exption,n,,
429,430,Resistors,Panasonic,41911-01102,ERJ2RKF1102,ERJ2RKF1102X,https://app.lcm-client.com/belimo/matching/41911-01102/a57dd45b8b8bfbbc6b72118464f0d155,ok,Automotive,Exption,n,,
430,431,Resistors,Panasonic,41911-01202,ERJ2RKF1202,ERJ2RKF1202X,https://app.lcm-client.com/belimo/matching/41911-01202/a57dd45b8b8bfbbc6b72118464f1003f,ok,Automotive,Exption,n,,
431,432,Resistors,Panasonic,41911-01203,ERJ2RKF1203,ERJ2RKF1203X,https://app.lcm-client.com/belimo/matching/41911-01203/a57dd45b8b8bfbbc6b72118464f11b46,ok,Automotive,Exption,n,,
432,433,Resistors,Panasonic,41911-01402,ERJ2RKF1402,ERJ2RKF1402X,https://app.lcm-client.com/belimo/matching/41911-01402/a57dd45b8b8bfbbc6b72118464f1429e,ok,Automotive,Exption,n,,
433,434,Resistors,Panasonic,41911-01502,ERJ2RKF1502,ERJ2RKF1502X,https://app.lcm-client.com/belimo/matching/41911-01502/a57dd45b8b8bfbbc6b72118464f179f5,ok,Automotive,Exption,n,,
434,435,Resistors,Panasonic,41911-01503,ERJ2RKF1503,ERJ2RKF1503X,https://app.lcm-client.com/belimo/matching/41911-01503/a57dd45b8b8bfbbc6b72118464f1b159,ok,Automotive,Exption,n,,
435,436,Resistors,Panasonic,41911-01802,ERJ2RKF1802,ERJ2RKF1802X,https://app.lcm-client.com/belimo/matching/41911-01802/a57dd45b8b8bfbbc6b72118464f1e1f1,ok,Automotive,Exption,n,,
436,437,Resistors,Panasonic,41911-01803,ERJ2RKF1803,ERJ2RKF1803X,https://app.lcm-client.com/belimo/matching/41911-01803/a57dd45b8b8bfbbc6b72118464f210cd,ok,Automotive,Exption,n,,
437,438,Resistors,Panasonic,41911-02003,ERJ2RKF2003,ERJ2RKF2003X,https://app.lcm-client.com/belimo/matching/41911-02003/a57dd45b8b8bfbbc6b72118464f2425a,ok,Automotive,Exption,n,,
438,439,Resistors,Panasonic,41911-02200,ERJ2RKF2200,ERJ2RKF2200X,https://app.lcm-client.com/belimo/matching/41911-02200/a57dd45b8b8bfbbc6b72118464f2631d,ok,Automotive,Exption,n,,
439,440,Resistors,Panasonic,41911-02201,ERJ2RKF2201,ERJ2RKF2201X,https://app.lcm-client.com/belimo/matching/41911-02201/a57dd45b8b8bfbbc6b72118464f28fbc,ok,Automotive,Exption,n,,
440,441,Resistors,Panasonic,41911-02202,ERJ2RKF2202,ERJ2RKF2202X,https://app.lcm-client.com/belimo/matching/41911-02202/a57dd45b8b8bfbbc6b72118464f2ad6b,ok,Automotive,Exption,n,,
441,442,Resistors,Panasonic,41911-02203,ERJ2RKF2203,ERJ2RKF2203X,https://app.lcm-client.com/belimo/matching/41911-02203/a57dd45b8b8bfbbc6b72118464f2d9da,ok,Automotive,Exption,n,,
442,443,Resistors,Panasonic,47690-00001,ERJ-6ENF1003V,ERJ6ENF1003V,https://app.lcm-client.com/belimo/matching/47690-00001/a57dd45b8b8bfbbc6b72118464fe67b5,ok,Automotive,Exption,n,,
443,444,Resistors,Panasonic,47692-00001,ERJ-6ENF1783V,ERJ6ENF1783V,https://app.lcm-client.com/belimo/matching/47692-00001/a57dd45b8b8bfbbc6b72118464fe776d,ok,Automotive,Exption,n,,
444,445,Resistors,Panasonic,47694-00001,ERJ-6ENF4753V,ERJ6ENF4753V,https://app.lcm-client.com/belimo/matching/47694-00001/a57dd45b8b8bfbbc6b72118464fe8343,ok,Automotive,Exption,n,,
445,446,Resistors,Panasonic,47695-00001,ERJ-6ENF6493V,ERJ6ENF6493V,https://app.lcm-client.com/belimo/matching/47695-00001/a57dd45b8b8bfbbc6b72118464fe92ca,ok,Automotive,Exption,n,,
446,447,Resistors,Panasonic,47700-00001,ERJ-6ENF1000V,ERJ6ENF1000V,https://app.lcm-client.com/belimo/matching/47700-00001/a57dd45b8b8bfbbc6b72118464fee6c1,ok,Automotive,Exption,n,,
447,448,Resistors,Panasonic,47703-00001,ERJ-6ENF9090V,ERJ6ENF9090V,https://app.lcm-client.com/belimo/matching/47703-00001/a57dd45b8b8bfbbc6b72118464ff302b,ok,Automotive,Exption,n,,
448,449,Resistors,Panasonic,47704-00001,ERJ-8ENF1001V,ERJ8ENF1001V,https://app.lcm-client.com/belimo/matching/47704-00001/a57dd45b8b8bfbbc6b72118464ff3d4c,ok,Automotive,Exption,y,NRND,
449,450,Resistors,Panasonic,47716-00001,ERJ-8ENF62R0V,ERJ8ENF62R0V,https://app.lcm-client.com/belimo/matching/47716-00001/a57dd45b8b8bfbbc6b72118464ffbddb,ok,Automotive,Exption,y,NRND,
450,451,Resistors,Panasonic,47720-00001,ERJ-8ENF4990V,ERJ8ENF4990V,https://app.lcm-client.com/belimo/matching/47720-00001/a57dd45b8b8bfbbc6b72118464ffd9f2,ok,Automotive,Exption,y,NRND,
451,452,Resistors,Panasonic,41911-02400,ERJ2RKF2400,ERJ2RKF2400x,https://app.lcm-client.com/belimo/matching/41911-02400/c8cb570d5127ae96aaae8eee6653b5ee,ok,Automotive,Exption,n,,
452,453,Resistors,Panasonic,41911-02402,ERJ2RKF2402,ERJ2RKF2402X,https://app.lcm-client.com/belimo/matching/41911-02402/c8cb570d5127ae96aaae8eee6653e56f,ok,Automotive,Exption,n,,
453,454,Resistors,Panasonic,41911-02701,ERJ2RKF2701,ERJ2RKF2701X,https://app.lcm-client.com/belimo/matching/41911-02701/c8cb570d5127ae96aaae8eee66541a81,ok,Automotive,Exption,n,,
454,455,Resistors,Panasonic,41911-02702,ERJ2RKF2702,ERJ2RKF2702X,https://app.lcm-client.com/belimo/matching/41911-02702/c8cb570d5127ae96aaae8eee66543ebe,ok,Automotive,Exption,n,,
455,456,Resistors,Panasonic,41911-03002,ERJ2RKF3002,ERJ2RKF3002X,https://app.lcm-client.com/belimo/matching/41911-03002/c8cb570d5127ae96aaae8eee6654c2de,ok,Automotive,Exption,n,,
456,457,Resistors,Panasonic,41911-03003,ERJ2RKF3003,ERJ2RKF3003X,https://app.lcm-client.com/belimo/matching/41911-03003/c8cb570d5127ae96aaae8eee6655059a,ok,Automotive,Exption,n,,
457,458,Resistors,Panasonic,41911-03300,ERJ2RKF3300,ERJ2RKF3300X,https://app.lcm-client.com/belimo/matching/41911-03300/c8cb570d5127ae96aaae8eee66553a8c,ok,Automotive,Exption,n,,
458,459,Resistors,Panasonic,41911-03302,ERJ2RKF3302,ERJ2RKF3302X,https://app.lcm-client.com/belimo/matching/41911-03302/c8cb570d5127ae96aaae8eee66555ae8,ok,Automotive,Exption,n,,
459,460,Resistors,Panasonic,41911-03303,ERJ2RKF3303,ERJ2RKF3303X,https://app.lcm-client.com/belimo/matching/41911-03303/c8cb570d5127ae96aaae8eee665598e9,ok,Automotive,Exption,n,,
460,461,Resistors,Panasonic,41911-03900,ERJ2RKF3900,ERJ2RKF3900X,https://app.lcm-client.com/belimo/matching/41911-03900/c8cb570d5127ae96aaae8eee6655be39,ok,Automotive,Exption,n,,
461,462,Resistors,Panasonic,41911-04302,ERJ2RKF4302,ERJ2RKF4302X,https://app.lcm-client.com/belimo/matching/41911-04302/c8cb570d5127ae96aaae8eee66560497,ok,Automotive,Exption,n,,
462,463,Resistors,Panasonic,41911-04701,ERJ2RKF4703,ERJ2RKF4703X,https://app.lcm-client.com/belimo/matching/41911-04701/c8cb570d5127ae96aaae8eee66567b38,ok,Automotive,Exption,n,,
463,464,Resistors,Panasonic,41911-08872,ERJ2RKF8872,ERJ2RKF8872X,https://app.lcm-client.com/belimo/matching/41911-08872/c8cb570d5127ae96aaae8eee6658f0ba,ok,Automotive,Exption,n,,
464,465,Resistors,Panasonic,42175-03602,ERJ2RKF3602,ERJ2RKF3602X,https://app.lcm-client.com/belimo/matching/42175-03602/c8cb570d5127ae96aaae8eee6659b0b1,ok,Automotive,Exption,n,,
465,466,Resistors,Panasonic,42175-08201,ERJ2RKF8201,ERJ2RKF8201X,https://app.lcm-client.com/belimo/matching/42175-08201/c8cb570d5127ae96aaae8eee6659c7f1,ok,Automotive,Exption,n,,
466,467,Resistors,Panasonic,40412-02701,ERJ-U03D2701V,ERJU03D2701V,https://app.lcm-client.com/belimo/matching/40412-02701/ef351458b324e0850a464074929e2bee,ok,Automotive,Exption,n,,
467,468,Resistors,Panasonic,40412-02701,ERJ-U3RD2701V,ERJU3RD2701V,https://app.lcm-client.com/belimo/matching/40412-02701/ef351458b324e0850a464074929e3613,ok,Automotive,Exption,n,,
468,469,Resistors,Panasonic,41861-01003,ERA2AEB104,ERA2AEB104X,https://app.lcm-client.com/belimo/matching/41861-01003/ef351458b324e0850a46407492ccb156,ok,Automotive,Exption,n,,
469,470,Resistors,Panasonic,41861-02001,ERA2AEB202,ERA2AEB202X,https://app.lcm-client.com/belimo/matching/41861-02001/ef351458b324e0850a46407492ccefa4,ok,Automotive,Exption,n,,
470,471,Resistors,Panasonic,41861-02702,ERA2AEB273,ERA2AEB273X,https://app.lcm-client.com/belimo/matching/41861-02702/ef351458b324e0850a46407492cd4c96,ok,Automotive,Exption,n,,
471,472,Resistors,Panasonic,41861-04702,ERJ2RKF4702,ERJ2RKF4702X,https://app.lcm-client.com/belimo/matching/41861-04702/ef351458b324e0850a46407492cd780d,ok,Automotive,Exption,n,,
472,473,Resistors,Panasonic,41861-06802,ERA2AEB683,ERA2AEB683X,https://app.lcm-client.com/belimo/matching/41861-06802/ef351458b324e0850a46407492cd95c0,ok,Automotive,Exption,n,,
473,474,Resistors,Panasonic,41911-01001,ERJ2RKF1001,ERJ2RKF1001X,https://app.lcm-client.com/belimo/matching/41911-01001/ef351458b324e0850a46407492ced498,ok,Automotive,Exption,n,,
474,475,Resistors,Panasonic,41911-05102,ERJ2RKF5102,ERJ2RKF5102X,https://app.lcm-client.com/belimo/matching/41911-05102/ef351458b324e0850a46407492d19988,ok,Automotive,Exption,n,,
475,476,Resistors,Panasonic,41911-05103,ERJ2RKF5103,ERJ2RKF5103X,https://app.lcm-client.com/belimo/matching/41911-05103/ef351458b324e0850a46407492d1cc89,ok,Automotive,Exption,n,,
476,477,Resistors,Panasonic,41911-05603,ERJ2RKF5603,ERJ2RKF5603X,https://app.lcm-client.com/belimo/matching/41911-05603/ef351458b324e0850a46407492d223fb,ok,Automotive,Exption,n,,
477,478,Resistors,Panasonic,41911-06201,ERJ2RKF6201,ERJ2RKF6201X,https://app.lcm-client.com/belimo/matching/41911-06201/ef351458b324e0850a46407492d2c3d1,ok,Automotive,Exption,n,,
478,479,Resistors,Panasonic,41911-06202,ERJ2RKF6202,ERJ2RKF6202X,https://app.lcm-client.com/belimo/matching/41911-06202/ef351458b324e0850a46407492d2fe25,ok,Automotive,Exption,n,,
479,480,Resistors,Panasonic,41911-06802,ERJ2RKF6802,ERJ2RKF6802X,https://app.lcm-client.com/belimo/matching/41911-06802/ef351458b324e0850a46407492d330e8,ok,Automotive,Exption,n,,
480,481,Resistors,Panasonic,41911-06803,ERJ2RKF6803,ERJ2RKF6803X,https://app.lcm-client.com/belimo/matching/41911-06803/ef351458b324e0850a46407492d3643a,ok,Automotive,Exption,n,,
481,482,Resistors,Panasonic,41911-06809,ERJ2RKF68R0,ERJ2RKF68R0X,https://app.lcm-client.com/belimo/matching/41911-06809/ef351458b324e0850a46407492d3ab42,ok,Automotive,Exption,n,,
482,483,Resistors,Panasonic,47673-00001,ERJ-6ENF1151V,ERJ6ENF1151V,https://app.lcm-client.com/belimo/matching/47673-00001/ef351458b324e0850a46407492de2ab2,ok,Automotive,Exption,n,,
483,484,Resistors,Panasonic,47678-00001,ERJ-6ENF4301V,ERJ6ENF4301V,https://app.lcm-client.com/belimo/matching/47678-00001/ef351458b324e0850a46407492de700b,ok,Automotive,Exption,n,,
484,485,Resistors,Panasonic,47682-00001,ERJ-6ENF1912V,ERJ6ENF1912V,https://app.lcm-client.com/belimo/matching/47682-00001/ef351458b324e0850a46407492decfd2,ok,Automotive,Exption,n,,
485,486,Resistors,TDK,40138,B57620C5102J,B57620C5102J062,https://app.lcm-client.com/belimo/matching/40138/ef351458b324e0850a464074929dd12c,ok,STD,Yes,y,Requires Update,https://app.lcm-client.com/belimo/part/40138

@ -0,0 +1,11 @@
<!DOCTYPE html>
<html lang="en">
<head charset="UTF-8">
<title>{% block title %}Flask APP {% endblock %}</title>
</head>
<body>
<p>this will allways be here</p>
{% block content %} {% endblock %}
</body>
</html>

@ -0,0 +1,9 @@
{% extends "base.html" %}
{% block title %}Download Page{% endblock %}
{% block content %}
<h1>Download {{ filename }}</h1>
<a href="{{ url_for('download', filename=filename) }}"> Donwload </a>
{% endblock %}

@ -0,0 +1,31 @@
{% extends "base.html" %}
{% block title %}Index Page{% endblock %}
{% block content %}
<h1>Hellooo</h1>
<form method="POST" action="{{ url_for('index') }}">
<input type="text" name="username" placeholder="Username"><br>
<input type="text" name="password" placeholder="Password"><br>
<input type="submit" value="login">
</form>
<h1>File Upload</h1>
<form method="POST" action="{{ url_for('file_upload') }}" enctype="multipart/form-data">
<input type="file" name="file" accept="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/vnd.ms-excel, text/plain" ><br>
<input type="submit" value="upload File">
</form>
<h1>Convert To CSV</h1>
<form method="POST" action="{{ url_for('convert_csv') }}" enctype="multipart/form-data">
<input type="file" name="file" accept="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/vnd.ms-excel" ><br>
<input type="submit" value="upload File">
</form>
<h1>Convert To CSV Two</h1>
<form method="POST" action="{{ url_for('convert_csv_two') }}" enctype="multipart/form-data">
<input type="file" name="file" accept="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/vnd.ms-excel" ><br>
<input type="submit" value="upload File">
</form>
{% endblock %}

@ -1,6 +1,5 @@
import os
class themeMinibase():
# Basic Color definitions
black = "#191717"
@ -13,7 +12,7 @@ class themeMinibase():
# Define layout styling
bgColorWhite = "background-color: " + white
layoutBgColor = "background-color: " + white
layoutNavbarBgColor = "background-color: " + black
layoutNavbarBgColor = "background-color: " + yellow
# (formUserInput) Used For password email and acount informations
userInputFormColor = "background-color: #ccebff"
userInputFormStyle = {'class': 'form-control form-control-lg'}

Loading…
Cancel
Save